-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGraphQL.cs
More file actions
30 lines (21 loc) · 796 Bytes
/
GraphQL.cs
File metadata and controls
30 lines (21 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Reecon
{
class GraphQL
{
// Just info here
/*
// Mass Dump: {__schema{types{name,fields{name description}}}}
Query Entire Schema: {__schema{types{name description}}}
--> Shows name + description - Eg: "Ping"
Query fields of specific Type: { __type(name: "Ping"){fields{name}}}
--> Shows fields in "Ping" - Eg: ip, output
Query Specific Value: {Ping(ip:"127.0.0.1") { output }}
Run a Mutation: {"query":"mutation{ UpdatePassword(email: \"reelix2@gmail.com\", username: \"reelix2\", password: \"reelix2\") { message } }"}
*/
}
}