graphql-zeus
graphql-zeus copied to clipboard
How to return all fields?
I have this query right now
const { data, loading, error } = useTypedQuery({
deployedApps: [
{},
{
id: true,
name: true,
},
],
});
How can I return all fields without mentioned each field as true, something like this
const { data, loading, error } = useTypedQuery({
deployedApps: [
{},
true
],
});