I’m trying to figure out whether it’s possible to formulate a GraphQL query to retrieve more than 50 items
Here’s a sample query which is returning a page of 50 items, when in fact I want all cards
query MyQuery {
cards(pipe_id: "305537187") {
nodes {
id
current_phase {
name
}
fields {
value
native_value
field {
id
label
internal_id
index_name
index
}
}
}
}
}