Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oskogstad committed Oct 10, 2024
1 parent 972870d commit c419651
Showing 2 changed files with 3 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
@@ -62,6 +62,7 @@ type Attachment {
type AttachmentUrl {
id: UUID!
url: URL!
mediaType: String
consumerType: AttachmentUrlConsumer!
}

@@ -393,4 +394,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
@@ -194,6 +194,7 @@ public sealed class AttachmentUrl
{
public Guid Id { get; set; }
public Uri Url { get; set; } = null!;
public string? MediaType { get; set; }

public AttachmentUrlConsumer ConsumerType { get; set; }
}

0 comments on commit c419651

Please sign in to comment.