1

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

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

4

1 回答 1

2

尝试这个!

query PostsWithAuthor {
  allPosts(filter: { author: null }) {
    id
    author {
      id
    }
  }
}
于 2018-03-26T06:49:23.410 回答