Skip to content

Instantly share code, notes, and snippets.

@vladar
Created April 23, 2016 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vladar/5def770be005cd9218560c80aa133715 to your computer and use it in GitHub Desktop.
Save vladar/5def770be005cd9218560c80aa133715 to your computer and use it in GitHub Desktop.
<?php
class HumanType
{
public function getDefinition()
{
return '
type Human : Character {
id: String!
name: String
friends: [Character] @resolveMethod("getFriends")
appearsIn: [Episode]
homePlanet: String
}
';
}
public function getFriends()
{
//resolve friends
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment