Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. private RuntimeWiring buildWiring() {
  2. return RuntimeWiring.newRuntimeWiring()
  3. .type(newTypeWiring("Query")
  4. .dataFetcher("animals", animalsFetcher)
  5. )
  6. .type(newTypeWiring("Animal")
  7. .dataFetcher("countries", animalCountriesFetcher)
  8. )
  9. .build();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement