mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-20 20:01:25 +00:00
21 lines
293 B
GraphQL
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
|
|
}
|