Hi,
I have two questions.
- Does the following Graphql Query return all boards without giving any pagination parameter? I think it returns all boards since there is no pagination cursor.
query {
boards {
name
id
}
}
- Can I do a fuzzy search by name like the following?. As it seems there is no argument which takes the name and does a filter.
query {
boards(name: "foo board") {
name
id
}
}