Skip to content

Commit

Permalink
add referenceId to delegation query
Browse files Browse the repository at this point in the history
  • Loading branch information
magnearun committed Sep 20, 2024
1 parent 98d594e commit ca2b33e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libs/api/domains/auth/src/lib/models/delegation.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ export abstract class Delegation {

@Field(() => AuthDelegationProvider)
provider!: AuthDelegationProvider

@Field(() => String, { nullable: true })
referenceId?: string
}

@ObjectType('AuthLegalGuardianDelegation', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ query getCustomDelegationsAdmin($nationalId: String!) {
incoming {
id
validTo
referenceId
domain {
name
organisationLogoKey
Expand All @@ -31,6 +32,7 @@ query getCustomDelegationsAdmin($nationalId: String!) {
outgoing {
id
validTo
referenceId
domain {
name
organisationLogoKey
Expand Down

0 comments on commit ca2b33e

Please sign in to comment.