Ocelot-Social/webapp/graphql/EmbedQuery.js
2022-09-08 17:05:16 +02:00

24 lines
335 B
JavaScript

import gql from 'graphql-tag'
export default function () {
return gql`
query($url: String!) {
embed(url: $url) {
type
title
author
publisher
date
description
url
image
audio
video
lang
sources
html
}
}
`
}