Skip to content

Commit

Permalink
Merge pull request #25 from CapgeminiInventUK/graphql-schema
Browse files Browse the repository at this point in the history
add schema
  • Loading branch information
JakeReadman authored Feb 9, 2024
2 parents 7facfb6 + b3e8a76 commit f071b3f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
13 changes: 7 additions & 6 deletions appsync.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ export type MutationUpdateSchoolProfileArgs = {

export type ProfileItems = {
__typename?: 'ProfileItems';
actionText?: Maybe<Scalars['String']['output']>;
banner?: Maybe<Scalars['String']['output']>;
helpBannerBody?: Maybe<Scalars['String']['output']>;
helpBannerTitle?: Maybe<Scalars['String']['output']>;
items?: Maybe<Scalars['String']['output']>;
whatToExpect?: Maybe<Scalars['String']['output']>;
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 = {
Expand Down Expand Up @@ -127,6 +127,7 @@ export type QueryGetSignUpDataArgs = {

export type School = {
__typename?: 'School';
isLocalAuthorityRegistered?: Maybe<Scalars['Boolean']['output']>;
localAuthority: Scalars['String']['output'];
name: Scalars['String']['output'];
postcode?: Maybe<Scalars['String']['output']>;
Expand Down
1 change: 1 addition & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ type School {
localAuthority: String!
postcode: String
registered: Boolean!
isLocalAuthorityRegistered: Boolean
}

type ProfileItems {
Expand Down

0 comments on commit f071b3f

Please sign in to comment.