Skip to content

Commit

Permalink
fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
minhaj-shakeel committed Nov 27, 2020
1 parent d29fad2 commit 5fa1c59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions graphql/resolve/query_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2533,7 +2533,7 @@
text : Post.text
dgraph.uid : uid
}
posts1 : Author.posts @filter(eq(Post.isPublished, false)) {
posts.1 : Author.posts @filter(eq(Post.isPublished, false)) {
title : Post.title
text : Post.text
dgraph.uid : uid
Expand Down Expand Up @@ -2567,7 +2567,7 @@
text : Post.text
dgraph.uid : uid
}
posts1 : Author.posts @filter(eq(Post.isPublished, true)) {
posts.1 : Author.posts @filter(eq(Post.isPublished, true)) {
title : Post.title
text : Post.text
dgraph.uid : uid
Expand Down Expand Up @@ -2623,8 +2623,8 @@
query {
queryAuthor(func: type(Author)) {
count_postsAggregate : count(Author.posts)
count_postsAggregate1 : count(Author.posts) @filter(gt(Post.tags, "abc"))
count_postsAggregate2 : count(Author.posts) @filter(le(Post.tags, "xyz"))
count_postsAggregate.1 : count(Author.posts) @filter(gt(Post.tags, "abc"))
count_postsAggregate.2 : count(Author.posts) @filter(le(Post.tags, "xyz"))
dgraph.uid : uid
}
}
Expand Down

0 comments on commit 5fa1c59

Please sign in to comment.