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(...)
}
Variables:
[ "campaign" => [ "name" => "asdasd" "type" => "RateReview" "state" => "Draft" "project" => "cce0d658-3d37-4eb3-936c-cc6cad514074" "targeting" => [ [ "country" => [ "type" => "include" "values" => [ "AI" "AF" ] ] ] [ "osVersion" => [ "compareType" => "equal" "value" => "1" ] ] [ "osVersion" => [ "compareType" => "equal" "value" => "1" ] ] [ "appVersion" => [ "compareType" => "equal" "value" => "1" ] ] [ "appVersion" => [ "compareType" => "equal" "value" => "1" ] ] [ "appInstallVersion" => [ "compareType" => "equal" "value" => "1" ] ] [ "application" => [ "type" => "include" "values" => [ "c30db438-3e6b-42f2-8983-e7faecfba38c" ] ] ] ] "triggering" => [ "event" => "MyEvent" "repeat" => [ "repeatType" => "interval" "repeatEntity" => "session" "repeatValue" => [ 1 ] "subRepeat" => [ "repeatType" => "every" "repeatEntity" => "event" "repeatValue" => [ 2 5 ] ] ] "limit" => [ "count" => 7 "limit" => 2 "interval" => 2 "limitType" => "session" "intervalDimension" => "day" ] ] ] ]
[ "data" => [ "campaignCreate" => [ "id" => "18779279-4d83-40eb-a246-42c3ab9dfa12" "name" => "asdasd" "type" => "RateReview" "state" => "Draft" "content" => null "triggering" => [ "event" => "MyEvent" "repeat" => [ "repeatType" => "interval" "repeatEntity" => "session" "repeatValue" => [ 1 ] "subRepeat" => [ "repeatType" => "every" "repeatEntity" => "event" "repeatValue" => [ 2 5 ] "subRepeat" => null ] ] "limit" => [ "count" => 7 "limit" => 2 "limitType" => "session" "interval" => 2 "intervalDimension" => "day" ] ] "createdAt" => "2025-05-04T12:04:33.000Z" "updatedAt" => "2025-05-04T12:04:33.000Z" "targeting" => [ [ "values" => [ "AI" "AF" ] "type" => "include" "__typename" => "CountryTargetingPayload" ] [ "compareType" => "equal" "value" => "1" "__typename" => "OSVersionTargetingPayload" ] [ "compareType" => "equal" "value" => "1" "__typename" => "OSVersionTargetingPayload" ] [ "compareType" => "equal" "value" => "1" "__typename" => "AppVersionTargetingPayload" ] [ "compareType" => "equal" "value" => "1" "__typename" => "AppVersionTargetingPayload" ] [ "compareType" => "equal" "value" => "1" "__typename" => "AppInstallVersionTargetingPayload" ] [ "type" => "include" "applications" => [ [ "id" => "c30db438-3e6b-42f2-8983-e7faecfba38c" "name" => "Seabook" "platform" => "iOS" "__typename" => "Application" ] ] "__typename" => "ApplicationTargetingPayload" ] ] "__typename" => "Campaign" ] ] ] |
# | 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!
}