Top "Graphql" questions

GraphQL is an API technology designed to describe the complex, nested data dependencies of modern web applications.

How to query all the GraphQL type fields without writing a long query?

Assume you have a GraphQL type and it includes many fields. How to query all the fields without writing down …

php laravel graphql graphql-php
How to send graphql query by postman?

I use POST type URL http://######/graphql Body: query: "query: "{'noteTypes': {'name', 'label', 'labelColor', 'groupName', 'groupLabel', 'imageUrl'}}" But it return "…

graphql postman
How to properly make mock throw an error in Jest?

I'm testing my GraphQL api using Jest. I'm using a separate test suit for each query/mutation I have 2 tests (…

javascript meteor graphql jestjs
Get GraphQL whole schema query

I want to get the schema from the server. I can get all entities with the types but I'm unable …

schema graphql
Nodemon Error: System limit for number of file watchers reached

I'm learning graphql and using prisma-binding for graphql operations. I'm facing this nodemon error while I'm starting my node server …

node.js graphql nodemon
GraphQL mutation that accepts an array of dynamic size and common scalar types in one request

I need to be able to create a user and add it's favourite movies (An array of objects with a …

javascript graphql apollostack
GraphQL gql Syntax Error: Expected Name, found }

I'm attempting to set up Apollo GraphQL support in a new React project, but when I try to compile a …

syntax-error graphql apollo react-apollo graphql-tag
GraphQL Expected Iterable, but did not find one for field xxx.yyy

I'm currently trying GraphQL with NodeJS and I don't know, why this error occurs with the following query: { library{ name, …

node.js graphql graphql-js
How to query list of objects with array as an argument in GraphQL

I'm trying to query a list of objects having array of IDs. Something similar to following SQL query: SELECT name …

graphql graphql-js
Can graphql return aggregate counts?

Graphql is great and I've started using it in my app. I have a page that displays summary information and …

graphql