graphql query code example

Example 1: graphql mutation passing data

input EventInput {
    title:String!
    desc:String!
    price:Float!
  }
  type RootMutations{
    createEvent(E_input:EventInput) : Event
  }

Example 2: graphql

type Project {
  name: String
  tagline: String
  contributors: [User]
}

Example 3: query sequnce graphql

<Query query={firstQuery}>
  {({ data: { someQuery: { someValue } = {} } = {} }) => (
    <Query
      query={secondQuery}
      variables={{var1: someValue}}
      skip={someValue === undefined}
    >
      {({ data: secondQueryData }) => (
        // your component here
      )}
</Query>