plugin-graphql
plugin-graphql copied to clipboard
customQuery aways send plain query
Even configuring the connectionQueryMode option for 'nodes', when I make a customQuery is sent as plain.
Should be:
query Clients($first: Int!) {
clients(first: $first) {
nodes{
id
name
email
cepCode
documentNumber
cellphone
city
district
street
ufCode
}
}
}
But I get:
query Clients($first: Int!) {
clients(first: $first) {
id
name
email
cepCode
documentNumber
cellphone
city
district
street
ufCode
}
}
How did you configure the connectionQueryMode?