Ocelot-Social/webapp/graphql/EmbedQuery.js
2022-08-25 23:17:50 +02:00

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