1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

Temporarily remove an interface for a stable SDL export

This commit is contained in:
Quentin Gliech
2022-11-09 18:58:15 +01:00
parent 4f01c123c3
commit 76737ba41a
2 changed files with 6 additions and 13 deletions

View File

@@ -24,7 +24,6 @@
use async_graphql::{Context, Description, EmptyMutation, EmptySubscription};
use mas_axum_utils::SessionInfo;
use model::CreationEvent;
use sqlx::PgPool;
use self::model::{BrowserSession, Node, User};
@@ -38,7 +37,8 @@ pub type SchemaBuilder = async_graphql::SchemaBuilder<RootQuery, EmptyMutation,
pub fn schema_builder() -> SchemaBuilder {
async_graphql::Schema::build(RootQuery::new(), EmptyMutation, EmptySubscription)
.register_output_type::<Node>()
.register_output_type::<CreationEvent>()
// TODO: ordering of interface implementations is not stable
//.register_output_type::<CreationEvent>()
}
/// The query root of the GraphQL interface.