Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 259 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 259 Bytes

cranium

Cranium

Experimentation of DSL for graphql in dart

Example

A simple usage example:

final q = query("article", ss: [
  field("id"),
  field("slug"),
  field("description"),
  field("photo", args: {"size": new IntValue(500)})
]);