Generate Gql
import { Zeus } from './zeus';
const stringGql = Zeus('query', {
listCards: {
name: true,
skills: true,
Attack: true,
},
});
// stringGql value:
// query{listCards{name skills Attack}}Last updated
Was this helpful?
import { Zeus } from './zeus';
const stringGql = Zeus('query', {
listCards: {
name: true,
skills: true,
Attack: true,
},
});
// stringGql value:
// query{listCards{name skills Attack}}Last updated
Was this helpful?
Was this helpful?