Comparisons
graphql-zeus

Graphql-zeus (opens in a new tab)

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,
        },
    ],
})