interface SchemaModel {
    allFields?: ModelFields;
    attributes?: ModelAttributes;
    fields: ModelFields;
    name: string;
    pluralName: string;
    syncable?: boolean;
}

Properties

allFields?: ModelFields

Explicitly defined fields plus implied fields. (E.g., foreign keys.)

attributes?: ModelAttributes
fields: ModelFields

Explicitly defined fields.

name: string
pluralName: string
syncable?: boolean