Variables
Variables definitions can be created with the $
helper.
import { query, $ } from './sdk'
const QUERY = query(t => [
t.character({ id: $('characterId') }, t => [
t.id()
])
])
Variables definitions can be created with the $
helper.
import { query, $ } from './sdk'
const QUERY = query(t => [
t.character({ id: $('characterId') }, t => [
t.id()
])
])