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(...)
}
|
# | 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(...)
}
Variables:
[ "pagination" => [ "first" => null ] ]
[ "data" => [ "projects" => [ "edges" => [ [ "node" => [ "id" => "21d78a45-2d76-45a2-a958-1ba510fe598d" "name" => "project22" "image" => "https://www.appatar.io/21kj3kj123bkj2n3/medium" "__typename" => "Project" ] "cursor" => "MA==" "__typename" => "ProjectEdge" ] [ "node" => [ "id" => "64cdc9b2-1c6f-481d-bce4-210e9ff2777a" "name" => "sadasd" "image" => null "__typename" => "Project" ] "cursor" => "MQ==" "__typename" => "ProjectEdge" ] [ "node" => [ "id" => "68488f00-69d2-454c-bef6-a70ad37bb87e" "name" => "фывфыв" "image" => null "__typename" => "Project" ] "cursor" => "Mg==" "__typename" => "ProjectEdge" ] [ "node" => [ "id" => "88946d55-6c7c-48e5-aca7-c3f093521bce" "name" => "ыыффыфыфы" "image" => null "__typename" => "Project" ] "cursor" => "Mw==" "__typename" => "ProjectEdge" ] [ "node" => [ "id" => "cce0d658-3d37-4eb3-936c-cc6cad514074" "name" => "Seabook" "image" => "https://www.appatar.io/com.seabook.app/medium" "__typename" => "Project" ] "cursor" => "NA==" "__typename" => "ProjectEdge" ] ] "pageInfo" => [ "hasNextPage" => false "hasPreviousPage" => false "startCursor" => "MA==" "endCursor" => "NA==" "__typename" => "PageInfoPayload" ] "totalCount" => 5 "__typename" => "ProjectConnection" ] ] ] |
# | 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!
}