GraphQL requests
20 HTTP queries on GraphQL endpoint(s)
Refresh with latest query# | Time | Info |
---|---|---|
1 | 29 ms |
{
}
|
# | Time | Info |
---|
# | Time | Info |
---|---|---|
1 | 43 ms |
mutation refreshToken(...) {
refreshToken(...)
}
|
# | Time | Info |
---|---|---|
1 | 55 ms |
mutation refreshToken(...) {
refreshToken(...)
}
|
# | Time | Info |
---|---|---|
1 | 53 ms |
mutation refreshToken(...) {
refreshToken(...)
}
|
# | Time | Info |
---|---|---|
1 | 51 ms |
mutation refreshToken(...) {
refreshToken(...)
}
|
# | Time | Info |
---|---|---|
1 | 41 ms |
mutation refreshToken(...) {
refreshToken(...)
}
Variables:
[ "refreshToken" => "e8fce56892e28c03d2d50ed1f9bc696419ace9eef218b6a2b333f3d83d17d255e7516972635f2a9a30d68dba3b5ffe3a4b7a9a72e8805663bc3c9bdf451444fb" ]
[ "data" => [ "refreshToken" => [ "token" => "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NDYzNzc4MzQsImV4cCI6MTc0NjM4MTQzNCwicm9sZXMiOlsiUk9MRV9VU0VSIl0sInVzZXJuYW1lIjoieWFua2VydmlwQGdtYWlsLmNvbSJ9.W-BhgvsLlE8IMz7dcF7eMDyi1GIZYSpGXZLR27Svxlelz9GAUtOqfdKeCCIROUHMmINbFLDt895bD-ykxSvyfSsQNamXjZ5ZVSxT-6qgDCjJHiTN3Nztk7uvBGFZJrjzKEJk9vkJqB-AtaVBr53Q9hC27xgoE_kJMcut6YZhLqGd0z71oK86Yc6humLqYFZ7apj87NcNueQtYVke1r00Cq1FN4jGDBVkq6GpjXSdiNYTBJbEE259w4gXAELf6apNW1a6suPK1aZp0YmZTXXOUQ4Of8BtLQT9wgm8ktj2n5ZBHzG_l2MgZ45xZiwkk6NyvPBgWYDYVpmMmaJzeAc1rg" "refreshToken" => "f537cb4f08d7aa1ac31da2ce1a2a15affba5ec1e2d8aff81917fa06694f5af25397c18d151270e17dafd451a8526f883e062f937f8384fa5b32e7c2d349225e4" "__typename" => "AuthPayload" ] ] ] |
# | Time | Info |
---|---|---|
1 | 37 ms |
mutation refreshToken(...) {
refreshToken(...)
}
|
# | Time | Info |
---|---|---|
1 | 43 ms |
mutation refreshToken(...) {
refreshToken(...)
}
|
# | Time | Info |
---|---|---|
1 | 40 ms |
mutation refreshToken(...) {
refreshToken(...)
}
|
# | Time | Info |
---|---|---|
1 | 42 ms |
mutation refreshToken(...) {
refreshToken(...)
}
|
# | Time | Info |
---|---|---|
1 | 68 ms |
query Campaign(...) {
campaign(...)
}
|
# | Time | Info |
---|---|---|
1 | 28 ms |
query Campaign(...) {
campaign(...)
}
|
# | Time | Info |
---|---|---|
1 | 37 ms |
query Campaigns(...) {
campaigns(...)
}
|
# | Time | Info |
---|---|---|
1 | 154 ms |
mutation campaignCreate(...) {
campaignCreate(...)
}
|
# | Time | Info |
---|---|---|
1 | 24 ms |
query Applications(...) {
applications(...)
}
|
# | Time | Info |
---|---|---|
1 | 31 ms |
query Projects(...) {
projects(...)
}
|
# | Time | Info |
---|---|---|
1 | 23 ms |
query Me(...) {
me(...)
}
|
# | Time | Info |
---|---|---|
1 | 28 ms |
query Me(...) {
me(...)
}
|
# | Time | Info |
---|---|---|
1 | 697 ms |
mutation Login(...) {
login(...)
}
|
Schema: default
schema {
query: Query
mutation: Mutation
}
type Query {
id: String
countries: [Country]
}
type Country {
code: String!
name: String!
}
type Mutation {
"Refresh tokens"
refreshToken(
"Refresh Token"
token: String!
): AuthPayload!
"User login with email and password"
login(input: LoginInput!): AuthPayload!
"User reset password"
resetPassword(input: ResetPasswordInput!): Boolean!
"User registration with email and password"
signup(input: RegistrationUserInput!): AuthPayload!
"User update password"
updatePassword(input: UpdatePasswordInput!): Boolean!
}
type AuthPayload {
token: String!
refreshToken: String!
user: AmplyUser!
organization: Organization!
}
type AmplyUser {
email: String
name: String
role: String
status: String
avatar: String
}
type Organization {
name: String!
id: UUID!
users: [AmplyUser]
projectsCount: Int
projects: [Project]
logo: String
}
scalar UUID
type Project {
name: String!
id: UUID!
applications: [Application]
image: String
}
type Application {
id: UUID!
bundleId: String!
name: String!
image: String!
platform: String!
project: Project!
apiKeys: [ApiKey]
}
type ApiKey {
public: String!
secret: String!
application: Application!
lastUsed: DateTime
}
scalar DateTime
input LoginInput {
email: String!
password: String!
}
input ResetPasswordInput {
email: String!
}
input RegistrationUserInput {
email: String!
password: String!
organization: String!
name: String!
}
input UpdatePasswordInput {
token: String!
newPassword: String!
newPasswordRepeat: String!
}