Skip to content

Instantly share code, notes, and snippets.

@Quingsley
Created October 10, 2022 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Quingsley/b202f931105b43911aceefd621951b7a to your computer and use it in GitHub Desktop.
Save Quingsley/b202f931105b43911aceefd621951b7a to your computer and use it in GitHub Desktop.
queries
import 'dart:convert';
import 'package:http/http.dart' as http;
void main() async{
final graphQLQuery = {
'query': '''query GetSections {
getSections {
id
courseId
topic
orderNum
}
}'''
};
final response = await http
.post(Uri.parse('https://gentle-hotels-judge-197-232-145-163.loca.lt'),
headers: {'Content-Type': 'application/json'},
body: jsonEncode(graphQLQuery)
);
print(jsonDecode(response.body));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment