Skip to main content

SmsTemplate

This is a sms template table

type SmsTemplate implements Node {
id: ID!
name: String!
content: String
fields: GQLTJson!
type: String
createdAt: GQLTDate!
updatedAt: GQLTDate!
smsMessage(
after: String
first: Int = 0
before: String
last: Int = 0
orderBy: [SmsMessageOrderBy] = []
where: GQLTQuerySmsMessageWhere
include: [GQLTSmsMessageIncludeObject] = []
): SmsMessageHasManySmsMessageList
}

Fields#

id (ID!)#

The ID of an object

name (String!)#

This is the name of the sms-template that will be displayed.

content (String)#

This is the details of the sms template that will be used for sending variety of sms.

fields (GQLTJson!)#

This is the details of the data that will be filled for sending accurate sms.

type (String)#

A unique type column

createdAt (GQLTDate!)#

updatedAt (GQLTDate!)#

smsMessage (SmsMessageHasManySmsMessageList)#

If provided it will return results after the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the first ${amount} of records.

If provided it will return results before the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the last ${amount} of records.

If provided this will sort the results by the supplied column and direction

Interfaces#

Node#

An object with an ID