Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libs/gql-schema/campaign-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export const schema = `
name: String!
description: String!
campaigns: CampaignPage!
createdAt: String!
updatedAt: String!
createdAt: Date!
updatedAt: Date!
}

type CampaignGroupEdge {
Expand Down
2 changes: 1 addition & 1 deletion libs/gql-schema/campaign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const schema = `
repliesStaleAfter: Int
isAssignmentLimitedToTeams: Boolean!
timezone: String
createdAt: String!
createdAt: Date!
previewUrl: String
landlinesFiltered: Boolean!
externalSystem: ExternalSystem
Expand Down
2 changes: 1 addition & 1 deletion libs/gql-schema/messaging-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const schema = `
id: ID!
messagingServiceSid: String!
serviceType: MessagingServiceType!
updatedAt: String!
updatedAt: Date!
name: String
active: Boolean!
isDefault: Boolean
Expand Down
2 changes: 1 addition & 1 deletion libs/gql-schema/organization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const schema = `
messagingServices(after: Cursor, first: Int, active: Boolean): MessagingServicePage
campaignGroups(after: Cursor, first: Int): CampaignGroupPage!
templateCampaigns(after: Cursor, first: Int): CampaignPage!
deletedAt: String
deletedAt: Date
deletedBy: User
autosendingMps: Int
}
Expand Down
10 changes: 5 additions & 5 deletions src/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ type Organization {
messagingServices(after: Cursor, first: Int, active: Boolean): MessagingServicePage
campaignGroups(after: Cursor, first: Int): CampaignGroupPage!
templateCampaigns(after: Cursor, first: Int): CampaignPage!
deletedAt: String
deletedAt: Date
deletedBy: User
autosendingMps: Int
}
Expand Down Expand Up @@ -679,7 +679,7 @@ type Campaign {
repliesStaleAfter: Int
isAssignmentLimitedToTeams: Boolean!
timezone: String
createdAt: String!
createdAt: Date!
previewUrl: String
landlinesFiltered: Boolean!
externalSystem: ExternalSystem
Expand Down Expand Up @@ -848,7 +848,7 @@ type MessagingService {
id: ID!
messagingServiceSid: String!
serviceType: MessagingServiceType!
updatedAt: String!
updatedAt: Date!
name: String
active: Boolean!
isDefault: Boolean
Expand Down Expand Up @@ -959,8 +959,8 @@ type CampaignGroup {
name: String!
description: String!
campaigns: CampaignPage!
createdAt: String!
updatedAt: String!
createdAt: Date!
updatedAt: Date!
}

type CampaignGroupEdge {
Expand Down
Loading