Skip to content

Commit

Permalink
Changed Out_Animal_RelatedTo for Out_Entity_Related (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmantica1 authored and obi1kenobi committed May 7, 2019
1 parent 8e5f7eb commit b21db43
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Expand Up @@ -292,8 +292,10 @@ This query is *invalid* for two separate reasons:
out_Animal_OfSpecies {
uuid @output(out_name: "species_id")
}
out_Animal_RelatedTo {
name @output(out_name: "relative_name")
out_Entity_Related {
... on Animal {
name @output(out_name: "relative_name")
}
}
}
}
Expand All @@ -307,8 +309,10 @@ The following is a valid use of `@fold`:
out_Animal_ParentOf @fold {
in_Animal_ParentOf {
in_Animal_ParentOf {
out_Animal_RelatedTo {
name @output(out_name: "final_name")
out_Entity_Related {
... on Animal {
name @output(out_name: "final_name")
}
}
}
}
Expand Down

0 comments on commit b21db43

Please sign in to comment.