forked from cerc-io/laconic-console
13 lines
357 B
GraphQL
13 lines
357 B
GraphQL
#
|
|
# Copyright 2019 Wireline, Inc.
|
|
#
|
|
|
|
# TODO(telackey): Object would probably not be legal in general, but does work for a '@client' resolved query.
|
|
# When we do strong typing across the board we should replace it with something like KeyValueInput.
|
|
query ($attributes: Object) {
|
|
wns_records (attributes: $attributes) @client {
|
|
timestamp
|
|
json
|
|
}
|
|
}
|