Skip to content

Commit

Permalink
Added systemlabel to graphql
Browse files Browse the repository at this point in the history
  • Loading branch information
Fargekritt committed Oct 7, 2024
1 parent ced0b23 commit 0b616bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/schema/V1/schema.verified.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ type Dialog {
createdAt: DateTime!
updatedAt: DateTime!
dialogToken: String
systemLabel: SystemLabel!
status: DialogStatus!
content: Content!
attachments: [Attachment!]!
Expand Down Expand Up @@ -391,4 +392,4 @@ scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time"

scalar URL @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc3986")

scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
scalar UUID @specifiedBy(url: "https:\/\/tools.ietf.org\/html\/rfc4122")
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.DialogById;

Expand Down Expand Up @@ -50,6 +51,8 @@ public sealed class Dialog

public string? DialogToken { get; set; }

public SystemLabel SystemLabel { get; set; }

public DialogStatus Status { get; set; }

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

0 comments on commit 0b616bf

Please sign in to comment.