Skip to content

Commit

Permalink
chore: Added systemlabel to search (#1238)
Browse files Browse the repository at this point in the history
Added systemlabel to search

## Description


## Related Issue(s)

- #{issue number}

## Verification

- [x] **Your** code builds clean without any errors or warnings
- [x] Manual testing done (required)
- [ ] Relevant automated test added (if you find this hard, leave it and
we'll help out)

## Documentation

- [ ] Documentation is updated (either in `docs`-directory, Altinnpedia
or a separate linked PR in
[altinn-studio-docs.](https://github.com/Altinn/altinn-studio-docs), if
applicable)

Co-authored-by: Amund Myrbostad <amund.myrbostad@digdir.no>
  • Loading branch information
Fargekritt and Fargekritt authored Oct 7, 2024
1 parent 49c0d34 commit 3031d8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/schema/V1/schema.verified.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ type SearchDialog {
updatedAt: DateTime!
dueAt: DateTime
status: DialogStatus!
systemLabel: SystemLabel!
latestActivity: Activity
content: SearchContent!
seenSinceLastUpdate: [SeenLog!]!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Digdir.Domain.Dialogporten.GraphQL.EndUser.Common;
using Digdir.Domain.Dialogporten.GraphQL.EndUser.MutationTypes;

namespace Digdir.Domain.Dialogporten.GraphQL.EndUser.SearchDialogs;

Expand Down Expand Up @@ -45,6 +46,8 @@ public sealed class SearchDialog

public DialogStatus Status { get; set; }

public SystemLabel SystemLabel { get; set; }

public Activity? LatestActivity { get; set; }

public SearchContent Content { get; set; } = null!;
Expand Down

0 comments on commit 3031d8d

Please sign in to comment.