App and AppUser
Check out Anatomy of a Niftory App to see how these constructs are used in practice.
Represents your application in the Niftory ecosystem.
query AppQuery {
app {
id
}
}
Representation of a user logged in to your application via Niftory's authentication service.
query AppUserQuery {
appUser {
email
image
name
id
wallet {
...WalletFragment
}
app {
...AppFragment
}
}
}
Last updated
Was this helpful?