Skip to content

Commit

Permalink
fix: presences return type
Browse files Browse the repository at this point in the history
Co-authored-by: Bas950 <me@bas950.com>
  • Loading branch information
Timeraa and Bas950 committed Mar 31, 2023
1 parent 5e26019 commit 084ee65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/worker/src/v3/fields/presences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const schema = gql`
limit: Int
query: String
tag: String
): [Presence]
): [Presence!]!
}
type Presence {
Expand All @@ -36,8 +36,8 @@ export const schema = gql`
type PresenceMetadata {
author: PresenceMetadataUser!
contributors: [PresenceMetadataUser]
altnames: [String]
contributors: [PresenceMetadataUser!]
altnames: [String!]
service: String!
description: Scalar! # serialize
url: Scalar! # serialize
Expand Down

0 comments on commit 084ee65

Please sign in to comment.