Sending Multiple Field Values from Component GraphQL Query into React

I could not find any examples of using the Component GraphQL Query field to pass multiple values into React. Here is an the “results” section of a GraphQL Query passing multiple values into React:

 results {                       
      image: field(name: "Image") { value: jsonValue }
      text: field(name: "Text") { value: jsonValue }
      date: field(name: "Date") { value: jsonValue }
      link: field(name: "Link") { value: jsonValue }
         }

Leave a comment