mirror of
https://github.com/appwrite/appwrite
synced 2026-05-16 05:28:31 +00:00
446 B
446 B
import 'package:appwrite/appwrite.dart';
void main() { // Init SDK Client client = Client(); Graphql graphql = Graphql(client);
client .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ; Future result = graphql.mutation( query: {}, );
result .then((response) { print(response); }).catchError((error) { print(error.response); }); }