Skip to content

Instantly share code, notes, and snippets.

View c100k's full-sized avatar
🎯
Focusing

Chafik c100k

🎯
Focusing
  • Paris
View GitHub Profile
@GraphQLName("query")
public final class QuerySchema {
@GraphQLField
public static Entity entity(final DataFetchingEnvironment env, final String key) {
return ((Dao<Entity>)env.getSource()).find(key);
}
}