Home Reference Source

app/controllers/GraphController.js

  1. // @flow
  2. import App from "../App";
  3.  
  4. export default class GraphController {
  5. /**
  6. * Query the graph.
  7. */
  8. query(query: string, variables: any = {}): Promise<any> {
  9. return App.getInstance().getAdaptor().query(query, variables);
  10. }
  11. }