Ocelot-Social/webapp/graphql/EmbedQuery.js
2020-03-26 10:14:51 +01:00

24 lines
334 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
}
}
`
}