Make digestconfig a proper type so Swift can interact with it

This commit is contained in:
Jackson Harper
2024-05-14 16:49:16 +08:00
parent 95633327f6
commit 2b9851cbdb
3 changed files with 25 additions and 4 deletions

View File

@ -1067,6 +1067,10 @@ const schema = gql`
following: [User!]!
}
type DigestConfig {
channels: [String]
}
type UserPersonalization {
id: ID
theme: String
@ -1080,7 +1084,7 @@ const schema = gql`
speechRate: String
speechVolume: String
fields: JSON
digestConfig: JSON
digestConfig: DigestConfig
}
# Query: UserPersonalization