python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to filter data with nested object in GraphQL
query {
comp(func: eq(dgraph.type,"ServiceTemplate")) {
topologytemplate{
nodetemplates {
name
namespace @filter (eq(url,"a_url")){
...
Dhananjay Gahiwade
Votes: 0
Answers: 1
Composite index in Dgraph?
type Species {
name: String! @id
animals: [Animal!]! @hasInverse(field: species)
}
type Animal {
name: String!
species: Species!
}
How do I make animal name unique within species? So...

beardeadclown
Votes: 0
Answers: 1