Skip to content

Instantly share code, notes, and snippets.

@cgrinker
Created January 26, 2022 21:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cgrinker/8ef86fed195ff0c86a6a4e6597922868 to your computer and use it in GitHub Desktop.
Save cgrinker/8ef86fed195ff0c86a6a4e6597922868 to your computer and use it in GitHub Desktop.
type FortniteStats {
lastmodified: Int
placetop25: Int
minutesplayed: Int
playersoutlived: Int
placetop10: Int
placetop5: Int
placetop1: Int
placetop12: Int
kills: Int
placetop3: Int
placetop6: Int
matchesplayed: Int
}
type Playlists {
playlist_bots_defaultduo: FortniteStats
playlist_intro_apollo_newplayer: FortniteStats
playlist_50v50he: FortniteStats
playlist_respawn_24: FortniteStats
playlist_blitz_duos: FortniteStats
playlist_bots_trios: FortniteStats
playlist_showdownalt_squads: FortniteStats
playlist_deimos_solo_winter: FortniteStats
playlist_playgroundv2: FortniteStats
playlist_mash_squads: FortniteStats
playlist_defaultsquad: FortniteStats
playlist_showdownalt_duos: FortniteStats
playlist_sword_squads: FortniteStats
playlist_showdownalt_bluecheese_regular_solo: FortniteStats
playlist_solidgold_duos: FortniteStats
playlist_close_squad: FortniteStats
playlist_creative_mms_8_player_no_mms: FortniteStats
playlist_creative_mms_10_player_no_mms: FortniteStats
playlist_deimos_squad: FortniteStats
playlist_slide_squads: FortniteStats
playlist_bling_squads: FortniteStats
playlist_deimos_solo: FortniteStats
playlist_respawn_24_alt: FortniteStats
playlist_highexplosives_squads: FortniteStats
playlist_low_duos: FortniteStats
playlist_ground_duos: FortniteStats
playlist_deimos_squad_winter: FortniteStats
playlist_gungame_reverse: FortniteStats
playlist_classic_squads: FortniteStats
playlist_wax_squads: FortniteStats
playlist_showdown_squads: FortniteStats
playlist_snipers_squad: FortniteStats
playlist_playground: FortniteStats
playlist_soaring_50s: FortniteStats
playlist_slide_duos: FortniteStats
playlist_showdownalt_solo: FortniteStats
playlist_showdownalt_trios: FortniteStats
playlist_score_duos: FortniteStats
playlist_ashton_sm: FortniteStats
playlist_deimos_duo: FortniteStats
playlist_showdownalt_bluecheese_regular_trios: FortniteStats
playlist_music_low: FortniteStats
playlist_trios: FortniteStats
playlist_defaultsolo: FortniteStats
playlist_showdownalt_bluecheese_trios: FortniteStats
playlist_showdowntournament_solo: FortniteStats
playlist_fill_squads: FortniteStats
playlist_bling_duos: FortniteStats
playlist_defaultduo: FortniteStats
playlist_battlelab: FortniteStats
playlist_creative_playonly: FortniteStats
playlist_wax_duos: FortniteStats
playlist_50v50: FortniteStats
playlist_music_high: FortniteStats
playlist_deimos_duo_winter: FortniteStats
playlist_solidgold_squads: FortniteStats
playlist_snipers_solo: FortniteStats
playlist_showdowntournament_bluecheese_regular_solo: FortniteStats
playlist_dadbro_squads_12: FortniteStats
playlist_hover_64: FortniteStats
playlist_showdown_solo: FortniteStats
playlist_blitz_squad: FortniteStats
playlist_low_squads: FortniteStats
}
type FortniteInputKind {
keyboard: Playlists
gamepad: Playlists
touch: Playlists
}
enum FortniteSeasons {
ALL_TIME
# Start: Oct. 25, 2017, End: Dec. 13, 2017
CHAPTER1_SEASON1
# Start: Dec. 14, 2017, End: Feb. 21, 2018
CHAPTER1_SEASON2
# Start: Feb. 22, 2018, End: April 30, 2018
CHAPTER1_SEASON3
# Start: May 1, 2018, End: July 12, 2018
CHAPTER1_SEASON4
# Start: July 12, 2018, End: Sept. 27, 2018
CHAPTER1_SEASON5
# Start: Sept. 27, 2018, End: Dec. 6, 2018
CHAPTER1_SEASON6
# Start: Dec. 6, 2018, End: Feb. 28, 2019
CHAPTER1_SEASON7
# Start: Feb. 28, 2019, End: May 9, 2019
CHAPTER1_SEASON8
# Start: May 9, 2019, End: Aug. 1, 2019
CHAPTER1_SEASON9
# Start: Aug. 1, 2019, End: Oct. 13, 2019
CHAPTER1_SEASON10
# Start: Oct. 15, 2019 End: Feb. 20, 2020
CHAPTER2_SEASON1
# Start: Feb. 20, 2020 End: June 17, 2020
CHAPTER2_SEASON2
# Start: June. 17, 2020 End: Aug. 27, 2020
CHAPTER2_SEASON3
# Start: Aug. 27, 2020 End: Dec. 1, 2020
CHAPTER2_SEASON4
# Start: Dec. 2, 2020 End: March 15, 2021
CHAPTER2_SEASON5
# Start: March 16, 2021 End: June 7, 2021
CHAPTER2_SEASON6
# Start: June 8, 2021 End: Sept. 12, 2021
CHAPTER2_SEASON7
# Start: Sept. 13, 2021 End: Dec. 4, 2021
CHAPTER2_SEASON8
# Start: Dec. 5, 2021 End: March 15, 0202
CHAPTER3_SEASON1
}
type ForniteStatResult {
season: FortniteSeasons
stat: FortniteInputKind
}
type EpicFortniteQuery {
stats(name: ID seasons: [FortniteSeasons]): [ForniteStatResult]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment