Skip to Content
ComparisonsGraphQL Zeus

Graphql-zeus 

Some differences are

graphql zeus

const test = await Gql.mutation( { addCard: [ { card: $`card`, }, { id: true, }, ], }, { card: { Attack: 2, Defense: 3, description: 'Lord of the mountains', name: 'Golrog', }, }, )

Gqlts

await client.mutation({ addCard: [ { card: { Attack: 2, Defense: 3, description: 'Lord of the mountains', name: 'Golrog', }, }, { id: true, }, ], })
Last updated on