Skip to content

Instantly share code, notes, and snippets.

@shark-h
Created September 4, 2019 10:36
Show Gist options
  • Save shark-h/1c87cf6d6a00e9e415740c3ebe8d3286 to your computer and use it in GitHub Desktop.
Save shark-h/1c87cf6d6a00e9e415740c3ebe8d3286 to your computer and use it in GitHub Desktop.
String fetchScores = """
subscription fetchScores {
users(order_by: {score: desc}) {
name
score
}
}
""";
Subscription(
"fetchScores",
fetchScores,
builder: ({
bool loading,
dynamic payload,
dynamic error,
}) {
if (payload != null) {
… UI STAFF
},
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment