Ocelot-Social/webapp/graphql/EmbedQuery.js
2020-03-24 21:11:11 +01: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
}
}
`
}