-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Would it be possible to return a suggested query? Or at least suggest something in the cases it can, e.g. adding pagination
Something like:
query BadQuery {
device_list {
name
interfaces {
name
ip_addresses {
address
}
}
}
}
Returns recommended query
query GoodQuery {
device_list(
pagination: {limit: 20}
filters: {status: "active"}
) {
name
interfaces(pagination: {limit: 5}) {
name
ip_addresses(pagination: {limit: 2}) {
address
}
}
}
}
Metadata
Metadata
Assignees
Labels
No labels