I’m not completely understanding how to format my query using GraphQL… I only want to return boards with a specific owner ID. How do I format my query? This is what I have so far:
const query = `{
boards() {
id
name
owner {
id
name
}
}
}`