We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 starter generates the following error: Error: Cannot query field "nodeByPath" on type "Query".
[...slug].tsx is running a query using nodeByPath. This no longer exists in v2 of drupal module graphql_compose. We should now make queries against routes, see https://drupal-graphql-compose.github.io/documentation/#/features/routes.
Example:
query ($path: String!){ route(path: $path) { ... on RouteInternal { entity { __typename ... on NodeArticle { title } } } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Graphql starter generates the following error: Error: Cannot query field "nodeByPath" on type "Query".
[...slug].tsx is running a query using nodeByPath. This no longer exists in v2 of drupal module graphql_compose. We should now make queries against routes, see https://drupal-graphql-compose.github.io/documentation/#/features/routes.
Example:
The text was updated successfully, but these errors were encountered: