include id property

This commit is contained in:
Winzlieb - 2022-03-10 13:57:48 +01:00
parent 992ec2cf7b
commit 0fdfabda73
2 changed files with 25 additions and 22 deletions

View File

@ -18,29 +18,29 @@ export type Scalars = {
/** Authentication requires either a valid mail+password combination or a jwt obtained by an earlier login. */
export type Auth = {
/** Self descriptive. */
jwt: Scalars['String'];
/** Self descriptive. */
mail: Scalars['String'];
/** Self descriptive. */
password: Scalars['String'];
/** Self descriptive. */
jwt: Scalars['String'];
};
/** The type that query operations will be rooted at. */
export type QueryType = {
__typename?: 'QueryType';
/** For a username+password get a jwt containing the login:id */
login: Login;
/** The offers that are visible for the ngo, belonging to the login */
get_offers?: Maybe<Array<Get_Offers>>;
/** Export an encrypted database dump */
export?: Maybe<Export>;
/** The offers that are visible for the ngo, belonging to the login */
get_offers?: Maybe<Array<Get_Offers>>;
/** For a username+password get a jwt containing the login:id */
login: Login;
};
/** The type that query operations will be rooted at. */
export type QueryTypeLoginArgs = {
auth: Auth;
export type QueryTypeExportArgs = {
password: Scalars['String'];
};
@ -51,38 +51,39 @@ export type QueryTypeGet_OffersArgs = {
/** The type that query operations will be rooted at. */
export type QueryTypeExportArgs = {
password: Scalars['String'];
export type QueryTypeLoginArgs = {
auth: Auth;
};
/** Export an encrypted database dump */
export type Export = {
__typename?: 'export';
err?: Maybe<Scalars['String']>;
/** Self descriptive. */
exit: Scalars['Int'];
out?: Maybe<Scalars['String']>;
err?: Maybe<Scalars['String']>;
};
/** The offers that are visible for the ngo, belonging to the login */
export type Get_Offers = {
__typename?: 'get_offers';
time_from_str?: Maybe<Scalars['String']>;
time_duration_str?: Maybe<Scalars['String']>;
beds?: Maybe<Scalars['Int']>;
languages?: Maybe<Array<Scalars['String']>>;
place_country?: Maybe<Scalars['String']>;
place_city?: Maybe<Scalars['String']>;
place_zip?: Maybe<Scalars['String']>;
place_street?: Maybe<Scalars['String']>;
place_street_number?: Maybe<Scalars['String']>;
accessible?: Maybe<Scalars['Boolean']>;
animals_allowed?: Maybe<Scalars['Boolean']>;
animals_present?: Maybe<Scalars['Boolean']>;
beds?: Maybe<Scalars['Int']>;
contact_email?: Maybe<Scalars['String']>;
contact_name_full?: Maybe<Scalars['String']>;
contact_phone?: Maybe<Scalars['String']>;
contact_email?: Maybe<Scalars['String']>;
id?: Maybe<Scalars['String']>;
languages?: Maybe<Array<Scalars['String']>>;
note?: Maybe<Scalars['String']>;
place_city?: Maybe<Scalars['String']>;
place_country?: Maybe<Scalars['String']>;
place_street?: Maybe<Scalars['String']>;
place_street_number?: Maybe<Scalars['String']>;
place_zip?: Maybe<Scalars['String']>;
time_duration_str?: Maybe<Scalars['String']>;
time_from_str?: Maybe<Scalars['String']>;
};
/** For a username+password get a jwt containing the login:id */
@ -103,7 +104,7 @@ export type GetOffersQueryVariables = Exact<{
}>;
export type GetOffersQuery = { __typename?: 'QueryType', get_offers?: Array<{ __typename?: 'get_offers', time_from_str?: string | null, time_duration_str?: string | null, beds?: number | null, languages?: Array<string> | null, place_country?: string | null, place_city?: string | null, place_zip?: string | null, place_street?: string | null, place_street_number?: string | null, accessible?: boolean | null, animals_allowed?: boolean | null, animals_present?: boolean | null, contact_name_full?: string | null, contact_phone?: string | null, contact_email?: string | null, note?: string | null }> | null };
export type GetOffersQuery = { __typename?: 'QueryType', get_offers?: Array<{ __typename?: 'get_offers', id?: string | null, time_from_str?: string | null, time_duration_str?: string | null, beds?: number | null, languages?: Array<string> | null, place_country?: string | null, place_city?: string | null, place_zip?: string | null, place_street?: string | null, place_street_number?: string | null, accessible?: boolean | null, animals_allowed?: boolean | null, animals_present?: boolean | null, contact_name_full?: string | null, contact_phone?: string | null, contact_email?: string | null, note?: string | null }> | null };
export const LoginDocument = `
@ -128,6 +129,7 @@ export const useLoginQuery = <
export const GetOffersDocument = `
query GetOffers($auth: Auth!) {
get_offers(auth: $auth) {
id
time_from_str
time_duration_str
beds

View File

@ -8,6 +8,7 @@ export const login = gql`
export const get_offers = gql`
query GetOffers($auth: Auth!) {
get_offers(auth: $auth) {
id
time_from_str
time_duration_str
beds