Is it possible to limit the number of results in a...
# orm-help
c
Is it possible to limit the number of results in a nested, relationed field? E.g. something like:
Copy code
query foo {
foo(first: 1) {
    id
    bar(first: 10) {
      id
    }
  }
}
Where the
foo
schema has a property
bar
whose value is
[bar]