Questions tagged [graphiql]

GraphiQL is a graphical user interface for editing and testing GraphQL queries and mutations.

GraphiQL is a open source GraphQL integrated development environment (IDE). It’s a powerful (and all-around awesome) tool you’ll use often while building GraphQL API's.

GraphiQL Documentation

216 questions
-1
votes
2 answers

Gatsby GraphiQL did't see images from Strapi 4

I have a problem with Strapi and Gatsby GraphiQL. I was deploy Strapi on Heroku, create a content type and try to fetch some data, but Gatsby GraphiQL didn't see images. Why it's happening? Where is my mistake? { resolve:…
oov
  • 1
  • 1
-1
votes
1 answer

Querying multiple image from strapi with graphql and gatsby

I'm trying to map out some images into image galleries. There is supposed to be multiple images for each ID but only 1 is returned in graphIQL. I found this related thread but i cant work out what i should put in my gatsby node file. Any help would…
-1
votes
1 answer

Create a row using GraphQL

I am trying to create a mutation to insert an entry into the project query, but the response for the mutation is null. When I run the project query after the mutation, I see the same data as before, but not the updated data. How do I fix it? project…
Jake
  • 25,479
  • 31
  • 107
  • 168
-2
votes
1 answer

How to add a parameter to a graphql query with edges and nodes

To return all the data, I can use { allEmployees { edges { node { id name } } } } I have the variable {"name": "Roy"} How do I select all the employees named Roy?
MarkSO
  • 1
-2
votes
1 answer

Where to define variables in GraphQL

Excuse this newbie here. I want to list some articles based on their categories, now I have categories page where you click a category, a list of articles under that specific category should open. The question is, where to define the variable for…
1 2 3
14
15