link GraphQL Schema definition
1 interface OEmbed { 2 3 : String 4 5 : String 6 7 : Int 8 9 # The inputURL is the URL that we are trying to resolve via oEmbed. It is not 10 # part 11 # of the official spec, but GQL implementations practically need to use it. 12 : String! 13 14 : String 15 16 : String 17 18 # The description of thumbnail from the oembed spec fits with an optional 19 # thumbnail 20 # type with required parameters. 21 : ThumbnailOEmbed 22 23 : String 24 25 : String! 26 27 : String! 28 29 }