Skip to content

Commit

Permalink
Added systemlabel to search
Browse files Browse the repository at this point in the history
  • Loading branch information
Fargekritt committed Oct 7, 2024
1 parent 49c0d34 commit ada6521
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 ada6521

Please sign in to comment.