1
0
Fork 0
mirror of synced 2024-07-02 21:20:58 +12:00

Fix empty examples

This commit is contained in:
Jake Barnby 2022-10-21 15:28:06 +13:00
parent f9a32f6011
commit 2d6974da82
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C
20 changed files with 23 additions and 23 deletions

View file

@ -98,7 +98,7 @@ const APP_LIMIT_LIST_DEFAULT = 25; // Default maximum number of items to return
const APP_KEY_ACCCESS = 24 * 60 * 60; // 24 hours
const APP_CACHE_UPDATE = 24 * 60 * 60; // 24 hours
const APP_CACHE_BUSTER = 501;
const APP_VERSION_STABLE = '1.0.3';
const APP_VERSION_STABLE = '1.2.0';
const APP_DATABASE_ATTRIBUTE_EMAIL = 'email';
const APP_DATABASE_ATTRIBUTE_ENUM = 'enum';
const APP_DATABASE_ATTRIBUTE_IP = 'ip';

8
composer.lock generated
View file

@ -2881,12 +2881,12 @@
"source": {
"type": "git",
"url": "https://github.com/appwrite/sdk-generator.git",
"reference": "d51fe5c537133ad21fca7e676fe9b1d43817b6cb"
"reference": "e409146ec42ac230d6d71bbadfebec7a530d746e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/d51fe5c537133ad21fca7e676fe9b1d43817b6cb",
"reference": "d51fe5c537133ad21fca7e676fe9b1d43817b6cb",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/e409146ec42ac230d6d71bbadfebec7a530d746e",
"reference": "e409146ec42ac230d6d71bbadfebec7a530d746e",
"shasum": ""
},
"require": {
@ -2923,7 +2923,7 @@
"issues": "https://github.com/appwrite/sdk-generator/issues",
"source": "https://github.com/appwrite/sdk-generator/tree/feat-graphql"
},
"time": "2022-10-20T06:50:11+00:00"
"time": "2022-10-21T00:49:26+00:00"
},
{
"name": "doctrine/instantiator",

View file

@ -1,7 +1,7 @@
mutation {
accountCreatePhoneSession(
userId: "[USER_ID]",
phone:
phone: ""
) {
id
createdAt

View file

@ -1,6 +1,6 @@
mutation {
accountUpdatePhone(
phone: ,
phone: "",
password: "password"
) {
id

View file

@ -1,6 +1,6 @@
mutation {
accountUpdatePhone(
phone: ,
phone: "",
password: "password"
) {
id

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateBooleanAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
required: false
) {
key

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateDatetimeAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
required: false
) {
key

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateEmailAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
required: false
) {
key

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateEnumAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
elements: [],
required: false
) {

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateFloatAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
required: false
) {
key

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateIndex(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
type: "key",
attributes: []
) {

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateIntegerAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
required: false
) {
key

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateIpAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
required: false
) {
key

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateStringAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
size: 1,
required: false
) {

View file

@ -2,7 +2,7 @@ mutation {
databasesCreateUrlAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: ,
key: "",
required: false
) {
key

View file

@ -2,7 +2,7 @@ mutation {
databasesDeleteAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key:
key: ""
) {
status
}

View file

@ -2,7 +2,7 @@ mutation {
databasesDeleteIndex(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key:
key: ""
) {
status
}

View file

@ -2,7 +2,7 @@ query {
databasesGetAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key:
key: ""
) {
status
}

View file

@ -2,7 +2,7 @@ query {
databasesGetIndex(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key:
key: ""
) {
key
type

View file

@ -1,7 +1,7 @@
mutation {
usersUpdatePhone(
userId: "[USER_ID]",
number:
number: ""
) {
id
createdAt