Ocelot-Social/src/schema.graphql
2018-12-28 16:35:36 +01:00

21 lines
293 B
GraphQL

type Embed {
type: String
title: String
author: String
publisher: String
date: String
description: String
url: String
image: String
audio: String
video: String
lang: String
logo: String
embed: String
sources: [String]
}
type Query {
embed(url: String!): Embed
}