-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from appwrite/dev
Fix between query output
- Loading branch information
Showing
20 changed files
with
542 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var health = new Health(client); | ||
|
||
HealthQueue result = await health.GetQueueBuilds(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var health = new Health(client); | ||
|
||
HealthQueue result = await health.GetQueueDatabases(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var health = new Health(client); | ||
|
||
HealthQueue result = await health.GetQueueDeletes(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var health = new Health(client); | ||
|
||
HealthQueue result = await health.GetQueueMails(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var health = new Health(client); | ||
|
||
HealthQueue result = await health.GetQueueMessaging(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using Appwrite; | ||
using Appwrite.Services; | ||
using Appwrite.Models; | ||
|
||
var client = new Client() | ||
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint | ||
.SetProject("5df5acd0d48c2") // Your project ID | ||
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key | ||
|
||
var health = new Health(client); | ||
|
||
HealthQueue result = await health.GetQueueMigrations(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.