diff --git a/appsync.d.ts b/appsync.d.ts index cade4f9..fcd5700 100644 --- a/appsync.d.ts +++ b/appsync.d.ts @@ -86,12 +86,12 @@ export type MutationUpdateSchoolProfileArgs = { export type ProfileItems = { __typename?: 'ProfileItems'; - actionText?: Maybe; - banner?: Maybe; - helpBannerBody?: Maybe; - helpBannerTitle?: Maybe; - items?: Maybe; - whatToExpect?: Maybe; + actionText: Scalars['String']['output']; + banner: Scalars['String']['output']; + helpBannerBody: Scalars['String']['output']; + helpBannerTitle: Scalars['String']['output']; + items: Scalars['String']['output']; + whatToExpect: Scalars['String']['output']; }; export type Query = { @@ -127,6 +127,7 @@ export type QueryGetSignUpDataArgs = { export type School = { __typename?: 'School'; + isLocalAuthorityRegistered?: Maybe; localAuthority: Scalars['String']['output']; name: Scalars['String']['output']; postcode?: Maybe; diff --git a/schema.graphql b/schema.graphql index c95f954..5ccca12 100644 --- a/schema.graphql +++ b/schema.graphql @@ -10,6 +10,7 @@ type School { localAuthority: String! postcode: String registered: Boolean! + isLocalAuthorityRegistered: Boolean } type ProfileItems {