-
-
Notifications
You must be signed in to change notification settings - Fork 892
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[GraphQL] Fix introspection (graphql-php / GraphiQL) #1886
[GraphQL] Fix introspection (graphql-php / GraphiQL) #1886
Conversation
311525d
to
2b64eaa
Compare
Can you just remove the code for now please ( |
28b5ef2
to
d317e94
Compare
This is done. |
Thanks @alanpoulain. |
…on-custom-types [GraphQL] Fix introspection (graphql-php / GraphiQL)
@alanpoulain, please inform current status concerning embedded mutations. I have a bid entity which embeds a message entity, which embeds an attachment entity. As it is now, it seems that I need to create 3 create mutations. Is that still the case? Thanks. |
Yes it is: #3258 (comment). |
The best way to fix current issues with GraphQL introspection is to remove the problematic code.
We should be waiting for this PR to be merged graphql/graphql-spec#395 and changes to be affected to graphql-php and graphql-js in order to add it again.
The main lost feature is the ability to manage embedded entities.
A way to get this feature back will be to have two fields (one for an IRI, the other for the data) for relations but there is some work to be done.