Provide a possibility to alter schema (from this and other modules).
Issue fork graphql_core_schema-3553404
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
czigor commentedFirst allow altering the graphql schema types of content entity fields and config entity properties.
Comment #6
czigor commentedOther possibilities to alter the schema:
AlterSchemaDataEventprovided by the graphql module like the alterable_composable schema does. This would allow us to use just one event instead of 3 alter hooks and also would be more general. However the event passes the schema as a SDL string which is hard to handle.CoreComposableSchema::getSchema()after the AST document is created. This has the same pros and cons as the event approach above. At least as far as I understand AST is not meant for schema manipulation.Comment #8
czigor commented