Skip to content

Instantly share code, notes, and snippets.

@Quingsley
Created October 10, 2022 09:19
Embed
What would you like to do?
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