still having issues with this: :sweat_smile: given...
# orm-help
s
still having issues with this: 😅 given
Copy code
type Bla {
  foos: [Foo!]!
}

type Foo {
  bla: Bla!
  text: String!
}

type Query {
  findBlasWithFooTextContaining(search: String!): [Bla!]!
}
using the playground I now have figured out how to filter
Foo
and then query for
bla
. to do this in the resolver I need to use a fragment, or the prisma-bindings, afaiu. but then, the result is still a
[Foo]
, instead of the intended
[Bla]
. any pointers highly appreciated!
d
Can you please create a minimal github repository explaining this issue? 🙂