CreateFolderInput
Creating a folder requires a journeyType and a journeyReferenceType and a journeyReference. The allowed journeyType and journeyReferenceType combinations for your organisation can be queried via the organisation query. Look at the journeyTypeConfiguration array to see what combinations are allowed.
input CreateFolderInput {
journeyTypeId: String!
journeyReferenceType: JourneyReferenceType!
journeyReference: JourneyReferenceInput!
}
Fields
CreateFolderInput.journeyTypeId ● String! non-null scalar
Examples of journeyTypeIds are: RESIDENCE_JOURNEY, FAMILY_PRACTICE, SINGLE_MORTGAGE, ONBOARDING_JOURNEY, ...
CreateFolderInput.journeyReferenceType ● JourneyReferenceType! non-null enum
Linckr currently support ADDRESS_NETHERLANDS and UNIQUE_STRING as journeyReferenceType. This is a required helper field to determine which field to parse in the journeyReferenceInput field. This has to do with a limitation in GraphQL regarding polymorphism for Input types.
CreateFolderInput.journeyReference ● JourneyReferenceInput! non-null input
Linckr currently support AddressNetherlandsReferenceInput and UniqueStringReferenceInput as journeyReferenceType.
Member of
createNewFolder mutation