|
|
@ -2490,7 +2490,10 @@ export type PersonFieldsForPageFragment = (
|
|
|
|
export type ProviderFieldsGeneralFragment = { __typename?: 'Provider', id: string, formName?: Maybe<string>, privatePerson?: Maybe<(
|
|
|
|
export type ProviderFieldsGeneralFragment = { __typename?: 'Provider', id: string, formName?: Maybe<string>, privatePerson?: Maybe<(
|
|
|
|
{ __typename?: 'ContactInformation' }
|
|
|
|
{ __typename?: 'ContactInformation' }
|
|
|
|
& ContactInformationFieldsGeneralFragment
|
|
|
|
& ContactInformationFieldsGeneralFragment
|
|
|
|
)>, organisation?: Maybe<{ __typename?: 'Organisation', id: string, name: string, contactInformation?: Maybe<(
|
|
|
|
)>, organisation?: Maybe<{ __typename?: 'Organisation', id: string, name: string, address?: Maybe<(
|
|
|
|
|
|
|
|
{ __typename?: 'Address' }
|
|
|
|
|
|
|
|
& AddressFieldsFragment
|
|
|
|
|
|
|
|
)>, contactInformation?: Maybe<(
|
|
|
|
{ __typename?: 'ContactInformation' }
|
|
|
|
{ __typename?: 'ContactInformation' }
|
|
|
|
& ContactInformationFieldsGeneralFragment
|
|
|
|
& ContactInformationFieldsGeneralFragment
|
|
|
|
)> }> };
|
|
|
|
)> }> };
|
|
|
@ -3136,6 +3139,14 @@ export const ContactInformationFieldsGeneralFragmentDoc = gql`
|
|
|
|
note
|
|
|
|
note
|
|
|
|
}
|
|
|
|
}
|
|
|
|
${PersonFieldsGeneralFragmentDoc}`;
|
|
|
|
${PersonFieldsGeneralFragmentDoc}`;
|
|
|
|
|
|
|
|
export const AddressFieldsFragmentDoc = gql`
|
|
|
|
|
|
|
|
fragment AddressFields on Address {
|
|
|
|
|
|
|
|
street
|
|
|
|
|
|
|
|
number
|
|
|
|
|
|
|
|
zip
|
|
|
|
|
|
|
|
city
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
`;
|
|
|
|
export const ProviderFieldsGeneralFragmentDoc = gql`
|
|
|
|
export const ProviderFieldsGeneralFragmentDoc = gql`
|
|
|
|
fragment ProviderFieldsGeneral on Provider {
|
|
|
|
fragment ProviderFieldsGeneral on Provider {
|
|
|
|
id
|
|
|
|
id
|
|
|
@ -3146,20 +3157,16 @@ export const ProviderFieldsGeneralFragmentDoc = gql`
|
|
|
|
organisation {
|
|
|
|
organisation {
|
|
|
|
id
|
|
|
|
id
|
|
|
|
name
|
|
|
|
name
|
|
|
|
|
|
|
|
address {
|
|
|
|
|
|
|
|
...AddressFields
|
|
|
|
|
|
|
|
}
|
|
|
|
contactInformation {
|
|
|
|
contactInformation {
|
|
|
|
...ContactInformationFieldsGeneral
|
|
|
|
...ContactInformationFieldsGeneral
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
${ContactInformationFieldsGeneralFragmentDoc}`;
|
|
|
|
${ContactInformationFieldsGeneralFragmentDoc}
|
|
|
|
export const AddressFieldsFragmentDoc = gql`
|
|
|
|
${AddressFieldsFragmentDoc}`;
|
|
|
|
fragment AddressFields on Address {
|
|
|
|
|
|
|
|
street
|
|
|
|
|
|
|
|
number
|
|
|
|
|
|
|
|
zip
|
|
|
|
|
|
|
|
city
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
export const OrganisationFieldsGeneralFragmentDoc = gql`
|
|
|
|
export const OrganisationFieldsGeneralFragmentDoc = gql`
|
|
|
|
fragment OrganisationFieldsGeneral on Organisation {
|
|
|
|
fragment OrganisationFieldsGeneral on Organisation {
|
|
|
|
id
|
|
|
|
id
|
|
|
|