Repository URL to install this package:
|
Version:
2.0.11 ▾
|
import { gql } from 'apollo-server'
export default gql`
type UserProperties {
id: Int
name: String
value: String
}
type UserInfo {
id: String
username: String
size: String
properties: [UserProperties]
addressinfo: [AddressInfo]
}
type AccountProfileResponse {
userinfo: UserInfo
}
input CustomerInputs {
email: String
}
input AccountInputs {
name: String
type: String
}
input AccountRegisterInput {
email: String
password: String
firstName: String
lastName: String
phoneNumber: String
name: String
street1: String
street2: String
street3: String
city: String
country: String
county: String
zipCode: String
taxId: String
dunsNumber: String
}
type AccountRegisterProperties {
id: String
name: String
value: String
}
type AccountRegisterAddresses {
id: String
name: String
type: String
email: String
street1: String
street2: String
street3: String
city: String
country: String
county: String
zipcode: String
}
type AccountStatus {
statusCode: String
statusText: String
}
type AccountRegisterResponse {
id: String
name: String
size: String
properties: [AccountRegisterProperties]
addresses: [AccountRegisterAddresses]
status: AccountStatus
}
input InviteTeamInput {
accountId: String
teamId: String
email: String
name: String
}
type RolesType {
roleId: String
roleName: String
}
type CustomersType {
id: Int
firstName: String
lastName: String
email: String
phoneNumber: String
roles: [RolesType]
}
type InviteTeamResponse {
sessionId: String
id: Int
name: String
description: String
status: String
costcenterId: Int
customers: [CustomersType]
}
`