fix-schema

This commit is contained in:
tonyrewin 2022-11-15 12:34:12 +03:00
parent 7af3323c80
commit 1def45b61c

View File

@ -191,27 +191,27 @@ type Mutation {
unfollow(what: FollowingEntity!, slug: String!): Result! unfollow(what: FollowingEntity!, slug: String!): Result!
} }
interface By { input MessagesBy {
author: String
body: String
chat: String
order: String order: String
days: Int days: Int
stat: String stat: String
} }
input MessagesBy implements By { input AuthorsBy {
author: String
body: String
chat: String
}
input AuthorsBy implements By{
lastSeen: DateTime lastSeen: DateTime
createdAt: DateTime createdAt: DateTime
slug: String slug: String
name: String name: String
topic: String topic: String
order: String
days: Int
stat: String
} }
input ShoutsBy implements By { input ShoutsBy {
slug: String slug: String
title: String title: String
body: String body: String
@ -220,13 +220,19 @@ input ShoutsBy implements By {
layout: String layout: String
published: Boolean published: Boolean
visibility: String visibility: String
order: String
days: Int
stat: String
} }
input ReactionBy implements By { input ReactionBy {
shout: String shout: String
body: String body: String
topic: String topic: String
author: String author: String
order: String
days: Int
stat: String
} }
################################### Query ################################### Query