Files
sdk-for-flutter/docs/examples/graphql/mutation.md
T
2024-02-14 07:22:43 +00:00

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); }); }