pnicolaou
02/18/2018, 11:29 AM{
posts {
id
comments(first: 2) {
id
}
}
}
But if i create my own resolver, lets say ‘getPosts’, how do can I implement the same filtering behaviour on the comments, so I can write a query like so
{
getPosts {
id
comments(first: 2) {
id
}
}
}