eddy0 / graphql

graphql + react

Repository from Github https://github.comeddy0/graphqlRepository from Github https://github.comeddy0/graphql

graphql

graphql + react

naming the item and useage fragment

// GraphQL
{
  google: company(id: "1") {
    ...list
  }
  apple: company(id: "2") {
    name
    id
  }
}

fragment list on company {
  name,
  id
}

GraphQNonNull

similar to required, if not provided, then throw error

About

graphql + react

License:MIT License


Languages

Language:JavaScript 97.2%Language:HTML 2.8%