getDeviceToken constant

String const getDeviceToken

Get device token by ID

Implementation

static const String getDeviceToken = '''
  query GetDeviceToken(\$id: ID!) {
    getDeviceToken(id: \$id) {
      id
      tokenId
      userId
      deviceToken
      platform
      deviceId
      appVersion
      isActive
      lastUsedAt
      createdAt
      updatedAt
      owner
    }
  }
''';