mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
24 lines
335 B
JavaScript
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
|
|
}
|
|
}
|
|
`
|
|
}
|