Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds two queries:
edgeAddon(id: "...")edgeAddons(ids: [...])Example query:
{ chromeExtensions(ids: ["mgmdkjcljneegjfajchedjpdhbadklcf"]) { ...Data } firefoxAddons(ids: ["anime-skip"]) { ...Data } edgeAddon(ids: ["aghmglalnfmjbipodadgbgpakneabgnp"]) { ...Data } } fragment Data on Extension { id name iconUrl shortDescription storeUrl rating users }Response
{ "data": { "chromeExtensions": [ { "id": "mgmdkjcljneegjfajchedjpdhbadklcf", "name": "Anime Skip Player", "iconUrl": "https://lh3.googleusercontent.com/lTplXRdnpEB-7DGRa_1nCKao_3aJ3C_e-GNVs9tQV9hDUXgupc1SsW6OrruxgrkSdFBSOqeia56YWgJI2IgpV1MK49s=s256", "shortDescription": "Custom video player for anime streaming websites. Skip intros, outros, and more.", "storeUrl": "https://chromewebstore.google.com/detail/anime-skip-player/mgmdkjcljneegjfajchedjpdhbadklcf", "rating": 4.4, "users": 2000 } ], "firefoxAddons": [ { "id": "2655498", "name": "Anime Skip Player", "iconUrl": "https://addons.mozilla.org/user-media/addon_icons/2655/2655498-64.png?modified=acc840da", "shortDescription": "Custom video player that provides the best anime watching experience, has fully customizable keyboard shortcuts, and auto-skips intros, outros, credits, filler, and more!", "storeUrl": "https://addons.mozilla.org/en-US/firefox/addon/anime-skip/", "rating": 4.4444, "users": 123 } ], "edgeAddons": [ { "id": "aghmglalnfmjbipodadgbgpakneabgnp", "name": "StayFree - Website Blocker, Web Usage Stats, Shorts Blocker", "iconUrl": "https://store-images.s-microsoft.com/image/apps.53886.3773f722-0a10-41fb-b162-eca2284e45c7.91956b09-f4d1-4220-a91b-3ae8123832bd.8fa4d17b-35e8-445f-a2bd-396ba61380f6", "shortDescription": "Analytics to help you understand and control your website usage, leading to less distractions and enhanced productivity", "storeUrl": "https://microsoftedge.microsoft.com/addons/detail/aghmglalnfmjbipodadgbgpakneabgnp", "rating": 0, "users": 528 } ] } }