Comment on page
Generate Gql
Use the
Zeus
function to generate a gql string:import { Zeus } from './zeus';
const stringGql = Zeus('query', {
listCards: {
name: true,
skills: true,
Attack: true,
},
});
// stringGql value:
// query{listCards{name skills Attack}}
Last modified 1yr ago