查询关系为null的元素

时间:2018-03-24 11:12:01

标签: graphql graphcool

如果我有一个简单的架构,如:

type Author @model { 
  id: ID! @isUnique 
  posts: [Post!]!  @relation(name: "AuthorOfPost")
}
type Post @model {
  id: ID! @isUnique
  author: Author @relation(name: "AuthorOfPost")
}

如何查询没有作者的所有帖子?

很遗憾,我在authorFilter id_is_null中找不到任何内容。

1 个答案:

答案 0 :(得分:2)

试试这个!

query PostsWithAuthor {
  allPosts(filter: { author: null }) {
    id
    author {
      id
    }
  }
}