diff --git a/docs/examples/1.2.x/client-graphql/examples/account/create-anonymous-session.md b/docs/examples/1.2.x/client-graphql/examples/account/create-anonymous-session.md index 36b4d1163..369c48727 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/create-anonymous-session.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/create-anonymous-session.md @@ -1,7 +1,7 @@ mutation { accountCreateAnonymousSession { - id - createdAt + _id + _createdAt userId expire provider diff --git a/docs/examples/1.2.x/client-graphql/examples/account/create-email-session.md b/docs/examples/1.2.x/client-graphql/examples/account/create-email-session.md index ae860f452..a19d331a0 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/create-email-session.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/create-email-session.md @@ -3,8 +3,8 @@ mutation { email: "email@example.com", password: "password" ) { - id - createdAt + _id + _createdAt userId expire provider diff --git a/docs/examples/1.2.x/client-graphql/examples/account/create-magic-u-r-l-session.md b/docs/examples/1.2.x/client-graphql/examples/account/create-magic-u-r-l-session.md index ce52daea4..18418aecb 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/create-magic-u-r-l-session.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/create-magic-u-r-l-session.md @@ -3,8 +3,8 @@ mutation { userId: "[USER_ID]", email: "email@example.com" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/client-graphql/examples/account/create-phone-session.md b/docs/examples/1.2.x/client-graphql/examples/account/create-phone-session.md index f9d6f8a84..9897de765 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/create-phone-session.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/create-phone-session.md @@ -3,8 +3,8 @@ mutation { userId: "[USER_ID]", phone: "+12065550100" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/client-graphql/examples/account/create-phone-verification.md b/docs/examples/1.2.x/client-graphql/examples/account/create-phone-verification.md index 2d2048178..200e1c6d3 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/create-phone-verification.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/create-phone-verification.md @@ -1,7 +1,7 @@ mutation { accountCreatePhoneVerification { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/client-graphql/examples/account/create-recovery.md b/docs/examples/1.2.x/client-graphql/examples/account/create-recovery.md index 822fd51c4..865add6cc 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/create-recovery.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/create-recovery.md @@ -3,8 +3,8 @@ mutation { email: "email@example.com", url: "https://example.com" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/client-graphql/examples/account/create-verification.md b/docs/examples/1.2.x/client-graphql/examples/account/create-verification.md index b74173b56..22490be6b 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/create-verification.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/create-verification.md @@ -2,8 +2,8 @@ mutation { accountCreateVerification( url: "https://example.com" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/client-graphql/examples/account/create.md b/docs/examples/1.2.x/client-graphql/examples/account/create.md index 0843625be..0aec84c0e 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/create.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/create.md @@ -4,9 +4,9 @@ mutation { email: "email@example.com", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/client-graphql/examples/account/get-session.md b/docs/examples/1.2.x/client-graphql/examples/account/get-session.md index fb40b234c..2bf4e28c7 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/get-session.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/get-session.md @@ -2,8 +2,8 @@ query { accountGetSession( sessionId: "[SESSION_ID]" ) { - id - createdAt + _id + _createdAt userId expire provider diff --git a/docs/examples/1.2.x/client-graphql/examples/account/get.md b/docs/examples/1.2.x/client-graphql/examples/account/get.md index e6c9d51d5..b452d7181 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/get.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/get.md @@ -1,8 +1,8 @@ query { accountGet { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-email.md b/docs/examples/1.2.x/client-graphql/examples/account/update-email.md index d5f7e8348..5df6d5a74 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-email.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-email.md @@ -3,9 +3,9 @@ mutation { email: "email@example.com", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-magic-u-r-l-session.md b/docs/examples/1.2.x/client-graphql/examples/account/update-magic-u-r-l-session.md index d678ae99c..17c128b93 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-magic-u-r-l-session.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-magic-u-r-l-session.md @@ -3,8 +3,8 @@ mutation { userId: "[USER_ID]", secret: "[SECRET]" ) { - id - createdAt + _id + _createdAt userId expire provider diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-name.md b/docs/examples/1.2.x/client-graphql/examples/account/update-name.md index c6c251616..0d9a7f807 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-name.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-name.md @@ -2,9 +2,9 @@ mutation { accountUpdateName( name: "[NAME]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-password.md b/docs/examples/1.2.x/client-graphql/examples/account/update-password.md index ff75e80d4..c4e159055 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-password.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-password.md @@ -2,9 +2,9 @@ mutation { accountUpdatePassword( password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-phone-session.md b/docs/examples/1.2.x/client-graphql/examples/account/update-phone-session.md index 553671980..a24a6094b 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-phone-session.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-phone-session.md @@ -3,8 +3,8 @@ mutation { userId: "[USER_ID]", secret: "[SECRET]" ) { - id - createdAt + _id + _createdAt userId expire provider diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-phone-verification.md b/docs/examples/1.2.x/client-graphql/examples/account/update-phone-verification.md index 94a5c7504..103c2faf1 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-phone-verification.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-phone-verification.md @@ -3,8 +3,8 @@ mutation { userId: "[USER_ID]", secret: "[SECRET]" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-phone.md b/docs/examples/1.2.x/client-graphql/examples/account/update-phone.md index c9ed8e498..2af4068cc 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-phone.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-phone.md @@ -3,9 +3,9 @@ mutation { phone: "+12065550100", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-prefs.md b/docs/examples/1.2.x/client-graphql/examples/account/update-prefs.md index a4f09dafb..21ab90c80 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-prefs.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-prefs.md @@ -2,9 +2,9 @@ mutation { accountUpdatePrefs( prefs: "{}" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-recovery.md b/docs/examples/1.2.x/client-graphql/examples/account/update-recovery.md index 464bdc26b..a0c985d7d 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-recovery.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-recovery.md @@ -5,8 +5,8 @@ mutation { password: "password", passwordAgain: "password" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-session.md b/docs/examples/1.2.x/client-graphql/examples/account/update-session.md index 1384041f3..0358f4958 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-session.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-session.md @@ -2,8 +2,8 @@ mutation { accountUpdateSession( sessionId: "[SESSION_ID]" ) { - id - createdAt + _id + _createdAt userId expire provider diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-status.md b/docs/examples/1.2.x/client-graphql/examples/account/update-status.md index eee8544c1..364f7215c 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-status.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-status.md @@ -1,8 +1,8 @@ mutation { accountUpdateStatus { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/client-graphql/examples/account/update-verification.md b/docs/examples/1.2.x/client-graphql/examples/account/update-verification.md index 479dc6d90..47abb20d3 100644 --- a/docs/examples/1.2.x/client-graphql/examples/account/update-verification.md +++ b/docs/examples/1.2.x/client-graphql/examples/account/update-verification.md @@ -3,8 +3,8 @@ mutation { userId: "[USER_ID]", secret: "[SECRET]" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/client-graphql/examples/databases/create-document.md b/docs/examples/1.2.x/client-graphql/examples/databases/create-document.md index 2f4ba0893..6ef546c0d 100644 --- a/docs/examples/1.2.x/client-graphql/examples/databases/create-document.md +++ b/docs/examples/1.2.x/client-graphql/examples/databases/create-document.md @@ -5,12 +5,12 @@ mutation { documentId: "[DOCUMENT_ID]", data: "{}" ) { - id - collectionId - databaseId - createdAt - updatedAt - permissions + _id + _collectionId + _databaseId + _createdAt + _updatedAt + _permissions data } } diff --git a/docs/examples/1.2.x/client-graphql/examples/databases/get-document.md b/docs/examples/1.2.x/client-graphql/examples/databases/get-document.md index 3f38cecc2..94b30290a 100644 --- a/docs/examples/1.2.x/client-graphql/examples/databases/get-document.md +++ b/docs/examples/1.2.x/client-graphql/examples/databases/get-document.md @@ -4,12 +4,12 @@ query { collectionId: "[COLLECTION_ID]", documentId: "[DOCUMENT_ID]" ) { - id - collectionId - databaseId - createdAt - updatedAt - permissions + _id + _collectionId + _databaseId + _createdAt + _updatedAt + _permissions data } } diff --git a/docs/examples/1.2.x/client-graphql/examples/databases/update-document.md b/docs/examples/1.2.x/client-graphql/examples/databases/update-document.md index a70620ebf..0476c4ce4 100644 --- a/docs/examples/1.2.x/client-graphql/examples/databases/update-document.md +++ b/docs/examples/1.2.x/client-graphql/examples/databases/update-document.md @@ -4,12 +4,12 @@ mutation { collectionId: "[COLLECTION_ID]", documentId: "[DOCUMENT_ID]" ) { - id - collectionId - databaseId - createdAt - updatedAt - permissions + _id + _collectionId + _databaseId + _createdAt + _updatedAt + _permissions data } } diff --git a/docs/examples/1.2.x/client-graphql/examples/functions/create-execution.md b/docs/examples/1.2.x/client-graphql/examples/functions/create-execution.md index 090fd779b..300ce56a1 100644 --- a/docs/examples/1.2.x/client-graphql/examples/functions/create-execution.md +++ b/docs/examples/1.2.x/client-graphql/examples/functions/create-execution.md @@ -2,10 +2,10 @@ mutation { functionsCreateExecution( functionId: "[FUNCTION_ID]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions functionId trigger status diff --git a/docs/examples/1.2.x/client-graphql/examples/functions/get-execution.md b/docs/examples/1.2.x/client-graphql/examples/functions/get-execution.md index 128617029..895d1b146 100644 --- a/docs/examples/1.2.x/client-graphql/examples/functions/get-execution.md +++ b/docs/examples/1.2.x/client-graphql/examples/functions/get-execution.md @@ -3,10 +3,10 @@ query { functionId: "[FUNCTION_ID]", executionId: "[EXECUTION_ID]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions functionId trigger status diff --git a/docs/examples/1.2.x/client-graphql/examples/storage/get-file.md b/docs/examples/1.2.x/client-graphql/examples/storage/get-file.md index 9aded69cd..61182e1f0 100644 --- a/docs/examples/1.2.x/client-graphql/examples/storage/get-file.md +++ b/docs/examples/1.2.x/client-graphql/examples/storage/get-file.md @@ -3,11 +3,11 @@ query { bucketId: "[BUCKET_ID]", fileId: "[FILE_ID]" ) { - id + _id bucketId - createdAt - updatedAt - permissions + _createdAt + _updatedAt + _permissions name signature mimeType diff --git a/docs/examples/1.2.x/client-graphql/examples/storage/update-file.md b/docs/examples/1.2.x/client-graphql/examples/storage/update-file.md index b1a88befb..0a4c98d08 100644 --- a/docs/examples/1.2.x/client-graphql/examples/storage/update-file.md +++ b/docs/examples/1.2.x/client-graphql/examples/storage/update-file.md @@ -3,11 +3,11 @@ mutation { bucketId: "[BUCKET_ID]", fileId: "[FILE_ID]" ) { - id + _id bucketId - createdAt - updatedAt - permissions + _createdAt + _updatedAt + _permissions name signature mimeType diff --git a/docs/examples/1.2.x/client-graphql/examples/teams/create-membership.md b/docs/examples/1.2.x/client-graphql/examples/teams/create-membership.md index d8070a8b6..4eb790061 100644 --- a/docs/examples/1.2.x/client-graphql/examples/teams/create-membership.md +++ b/docs/examples/1.2.x/client-graphql/examples/teams/create-membership.md @@ -5,9 +5,9 @@ mutation { roles: [], url: "https://example.com" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt userId userName userEmail diff --git a/docs/examples/1.2.x/client-graphql/examples/teams/create.md b/docs/examples/1.2.x/client-graphql/examples/teams/create.md index f91d2b583..9e363de68 100644 --- a/docs/examples/1.2.x/client-graphql/examples/teams/create.md +++ b/docs/examples/1.2.x/client-graphql/examples/teams/create.md @@ -3,9 +3,9 @@ mutation { teamId: "[TEAM_ID]", name: "[NAME]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name total } diff --git a/docs/examples/1.2.x/client-graphql/examples/teams/get-membership.md b/docs/examples/1.2.x/client-graphql/examples/teams/get-membership.md index 5c07265fe..d28ef798f 100644 --- a/docs/examples/1.2.x/client-graphql/examples/teams/get-membership.md +++ b/docs/examples/1.2.x/client-graphql/examples/teams/get-membership.md @@ -3,9 +3,9 @@ query { teamId: "[TEAM_ID]", membershipId: "[MEMBERSHIP_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt userId userName userEmail diff --git a/docs/examples/1.2.x/client-graphql/examples/teams/get.md b/docs/examples/1.2.x/client-graphql/examples/teams/get.md index 2c3e5d715..3d0a05e3b 100644 --- a/docs/examples/1.2.x/client-graphql/examples/teams/get.md +++ b/docs/examples/1.2.x/client-graphql/examples/teams/get.md @@ -2,9 +2,9 @@ query { teamsGet( teamId: "[TEAM_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name total } diff --git a/docs/examples/1.2.x/client-graphql/examples/teams/update-membership-roles.md b/docs/examples/1.2.x/client-graphql/examples/teams/update-membership-roles.md index 4fa31e5a7..65079e8b8 100644 --- a/docs/examples/1.2.x/client-graphql/examples/teams/update-membership-roles.md +++ b/docs/examples/1.2.x/client-graphql/examples/teams/update-membership-roles.md @@ -4,9 +4,9 @@ mutation { membershipId: "[MEMBERSHIP_ID]", roles: [] ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt userId userName userEmail diff --git a/docs/examples/1.2.x/client-graphql/examples/teams/update-membership-status.md b/docs/examples/1.2.x/client-graphql/examples/teams/update-membership-status.md index 385042a15..ca6cec12e 100644 --- a/docs/examples/1.2.x/client-graphql/examples/teams/update-membership-status.md +++ b/docs/examples/1.2.x/client-graphql/examples/teams/update-membership-status.md @@ -5,9 +5,9 @@ mutation { userId: "[USER_ID]", secret: "[SECRET]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt userId userName userEmail diff --git a/docs/examples/1.2.x/client-graphql/examples/teams/update.md b/docs/examples/1.2.x/client-graphql/examples/teams/update.md index 5cf92d9af..f67b0cd9f 100644 --- a/docs/examples/1.2.x/client-graphql/examples/teams/update.md +++ b/docs/examples/1.2.x/client-graphql/examples/teams/update.md @@ -3,9 +3,9 @@ mutation { teamId: "[TEAM_ID]", name: "[NAME]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name total } diff --git a/docs/examples/1.2.x/server-graphql/examples/account/create-phone-verification.md b/docs/examples/1.2.x/server-graphql/examples/account/create-phone-verification.md index 2d2048178..200e1c6d3 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/create-phone-verification.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/create-phone-verification.md @@ -1,7 +1,7 @@ mutation { accountCreatePhoneVerification { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/server-graphql/examples/account/create-recovery.md b/docs/examples/1.2.x/server-graphql/examples/account/create-recovery.md index 822fd51c4..865add6cc 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/create-recovery.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/create-recovery.md @@ -3,8 +3,8 @@ mutation { email: "email@example.com", url: "https://example.com" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/server-graphql/examples/account/create-verification.md b/docs/examples/1.2.x/server-graphql/examples/account/create-verification.md index b74173b56..22490be6b 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/create-verification.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/create-verification.md @@ -2,8 +2,8 @@ mutation { accountCreateVerification( url: "https://example.com" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/server-graphql/examples/account/get-session.md b/docs/examples/1.2.x/server-graphql/examples/account/get-session.md index fb40b234c..2bf4e28c7 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/get-session.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/get-session.md @@ -2,8 +2,8 @@ query { accountGetSession( sessionId: "[SESSION_ID]" ) { - id - createdAt + _id + _createdAt userId expire provider diff --git a/docs/examples/1.2.x/server-graphql/examples/account/get.md b/docs/examples/1.2.x/server-graphql/examples/account/get.md index e6c9d51d5..b452d7181 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/get.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/get.md @@ -1,8 +1,8 @@ query { accountGet { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-email.md b/docs/examples/1.2.x/server-graphql/examples/account/update-email.md index d5f7e8348..5df6d5a74 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-email.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-email.md @@ -3,9 +3,9 @@ mutation { email: "email@example.com", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-name.md b/docs/examples/1.2.x/server-graphql/examples/account/update-name.md index c6c251616..0d9a7f807 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-name.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-name.md @@ -2,9 +2,9 @@ mutation { accountUpdateName( name: "[NAME]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-password.md b/docs/examples/1.2.x/server-graphql/examples/account/update-password.md index ff75e80d4..c4e159055 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-password.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-password.md @@ -2,9 +2,9 @@ mutation { accountUpdatePassword( password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-phone-verification.md b/docs/examples/1.2.x/server-graphql/examples/account/update-phone-verification.md index 94a5c7504..103c2faf1 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-phone-verification.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-phone-verification.md @@ -3,8 +3,8 @@ mutation { userId: "[USER_ID]", secret: "[SECRET]" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-phone.md b/docs/examples/1.2.x/server-graphql/examples/account/update-phone.md index c9ed8e498..2af4068cc 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-phone.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-phone.md @@ -3,9 +3,9 @@ mutation { phone: "+12065550100", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-prefs.md b/docs/examples/1.2.x/server-graphql/examples/account/update-prefs.md index a4f09dafb..21ab90c80 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-prefs.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-prefs.md @@ -2,9 +2,9 @@ mutation { accountUpdatePrefs( prefs: "{}" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-recovery.md b/docs/examples/1.2.x/server-graphql/examples/account/update-recovery.md index 464bdc26b..a0c985d7d 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-recovery.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-recovery.md @@ -5,8 +5,8 @@ mutation { password: "password", passwordAgain: "password" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-session.md b/docs/examples/1.2.x/server-graphql/examples/account/update-session.md index 1384041f3..0358f4958 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-session.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-session.md @@ -2,8 +2,8 @@ mutation { accountUpdateSession( sessionId: "[SESSION_ID]" ) { - id - createdAt + _id + _createdAt userId expire provider diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-status.md b/docs/examples/1.2.x/server-graphql/examples/account/update-status.md index eee8544c1..364f7215c 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-status.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-status.md @@ -1,8 +1,8 @@ mutation { accountUpdateStatus { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name registration status diff --git a/docs/examples/1.2.x/server-graphql/examples/account/update-verification.md b/docs/examples/1.2.x/server-graphql/examples/account/update-verification.md index 479dc6d90..47abb20d3 100644 --- a/docs/examples/1.2.x/server-graphql/examples/account/update-verification.md +++ b/docs/examples/1.2.x/server-graphql/examples/account/update-verification.md @@ -3,8 +3,8 @@ mutation { userId: "[USER_ID]", secret: "[SECRET]" ) { - id - createdAt + _id + _createdAt userId secret expire diff --git a/docs/examples/1.2.x/server-graphql/examples/databases/create-collection.md b/docs/examples/1.2.x/server-graphql/examples/databases/create-collection.md index dabbbed11..7c9c2efae 100644 --- a/docs/examples/1.2.x/server-graphql/examples/databases/create-collection.md +++ b/docs/examples/1.2.x/server-graphql/examples/databases/create-collection.md @@ -4,10 +4,10 @@ mutation { collectionId: "[COLLECTION_ID]", name: "[NAME]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions databaseId name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/databases/create-document.md b/docs/examples/1.2.x/server-graphql/examples/databases/create-document.md index 2f4ba0893..6ef546c0d 100644 --- a/docs/examples/1.2.x/server-graphql/examples/databases/create-document.md +++ b/docs/examples/1.2.x/server-graphql/examples/databases/create-document.md @@ -5,12 +5,12 @@ mutation { documentId: "[DOCUMENT_ID]", data: "{}" ) { - id - collectionId - databaseId - createdAt - updatedAt - permissions + _id + _collectionId + _databaseId + _createdAt + _updatedAt + _permissions data } } diff --git a/docs/examples/1.2.x/server-graphql/examples/databases/create.md b/docs/examples/1.2.x/server-graphql/examples/databases/create.md index 5011b0e3a..c1fc18c87 100644 --- a/docs/examples/1.2.x/server-graphql/examples/databases/create.md +++ b/docs/examples/1.2.x/server-graphql/examples/databases/create.md @@ -3,9 +3,9 @@ mutation { databaseId: "[DATABASE_ID]", name: "[NAME]" ) { - id + _id name - createdAt - updatedAt + _createdAt + _updatedAt } } diff --git a/docs/examples/1.2.x/server-graphql/examples/databases/get-collection.md b/docs/examples/1.2.x/server-graphql/examples/databases/get-collection.md index d6c55a280..842627824 100644 --- a/docs/examples/1.2.x/server-graphql/examples/databases/get-collection.md +++ b/docs/examples/1.2.x/server-graphql/examples/databases/get-collection.md @@ -3,10 +3,10 @@ query { databaseId: "[DATABASE_ID]", collectionId: "[COLLECTION_ID]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions databaseId name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/databases/get-document.md b/docs/examples/1.2.x/server-graphql/examples/databases/get-document.md index 3f38cecc2..94b30290a 100644 --- a/docs/examples/1.2.x/server-graphql/examples/databases/get-document.md +++ b/docs/examples/1.2.x/server-graphql/examples/databases/get-document.md @@ -4,12 +4,12 @@ query { collectionId: "[COLLECTION_ID]", documentId: "[DOCUMENT_ID]" ) { - id - collectionId - databaseId - createdAt - updatedAt - permissions + _id + _collectionId + _databaseId + _createdAt + _updatedAt + _permissions data } } diff --git a/docs/examples/1.2.x/server-graphql/examples/databases/get.md b/docs/examples/1.2.x/server-graphql/examples/databases/get.md index bc0ff2068..1d03c6b91 100644 --- a/docs/examples/1.2.x/server-graphql/examples/databases/get.md +++ b/docs/examples/1.2.x/server-graphql/examples/databases/get.md @@ -2,9 +2,9 @@ query { databasesGet( databaseId: "[DATABASE_ID]" ) { - id + _id name - createdAt - updatedAt + _createdAt + _updatedAt } } diff --git a/docs/examples/1.2.x/server-graphql/examples/databases/update-collection.md b/docs/examples/1.2.x/server-graphql/examples/databases/update-collection.md index 4e6b1eb36..3eff5c871 100644 --- a/docs/examples/1.2.x/server-graphql/examples/databases/update-collection.md +++ b/docs/examples/1.2.x/server-graphql/examples/databases/update-collection.md @@ -4,10 +4,10 @@ mutation { collectionId: "[COLLECTION_ID]", name: "[NAME]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions databaseId name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/databases/update-document.md b/docs/examples/1.2.x/server-graphql/examples/databases/update-document.md index a70620ebf..0476c4ce4 100644 --- a/docs/examples/1.2.x/server-graphql/examples/databases/update-document.md +++ b/docs/examples/1.2.x/server-graphql/examples/databases/update-document.md @@ -4,12 +4,12 @@ mutation { collectionId: "[COLLECTION_ID]", documentId: "[DOCUMENT_ID]" ) { - id - collectionId - databaseId - createdAt - updatedAt - permissions + _id + _collectionId + _databaseId + _createdAt + _updatedAt + _permissions data } } diff --git a/docs/examples/1.2.x/server-graphql/examples/databases/update.md b/docs/examples/1.2.x/server-graphql/examples/databases/update.md index afeadd2aa..07d149251 100644 --- a/docs/examples/1.2.x/server-graphql/examples/databases/update.md +++ b/docs/examples/1.2.x/server-graphql/examples/databases/update.md @@ -3,9 +3,9 @@ mutation { databaseId: "[DATABASE_ID]", name: "[NAME]" ) { - id + _id name - createdAt - updatedAt + _createdAt + _updatedAt } } diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/create-execution.md b/docs/examples/1.2.x/server-graphql/examples/functions/create-execution.md index 090fd779b..300ce56a1 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/create-execution.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/create-execution.md @@ -2,10 +2,10 @@ mutation { functionsCreateExecution( functionId: "[FUNCTION_ID]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions functionId trigger status diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/create-variable.md b/docs/examples/1.2.x/server-graphql/examples/functions/create-variable.md index e396fc48d..176edb2e7 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/create-variable.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/create-variable.md @@ -4,9 +4,9 @@ mutation { key: "[KEY]", value: "[VALUE]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt key value functionId diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/create.md b/docs/examples/1.2.x/server-graphql/examples/functions/create.md index f5cf62cbc..a2e29654c 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/create.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/create.md @@ -5,9 +5,9 @@ mutation { execute: ["any"], runtime: "node-14.5" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt execute name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/get-deployment.md b/docs/examples/1.2.x/server-graphql/examples/functions/get-deployment.md index 6591b4af7..e2e4609ca 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/get-deployment.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/get-deployment.md @@ -3,9 +3,9 @@ query { functionId: "[FUNCTION_ID]", deploymentId: "[DEPLOYMENT_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt resourceId resourceType entrypoint diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/get-execution.md b/docs/examples/1.2.x/server-graphql/examples/functions/get-execution.md index 128617029..895d1b146 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/get-execution.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/get-execution.md @@ -3,10 +3,10 @@ query { functionId: "[FUNCTION_ID]", executionId: "[EXECUTION_ID]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions functionId trigger status diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/get-variable.md b/docs/examples/1.2.x/server-graphql/examples/functions/get-variable.md index d029388a4..09a7fa8c2 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/get-variable.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/get-variable.md @@ -3,9 +3,9 @@ query { functionId: "[FUNCTION_ID]", variableId: "[VARIABLE_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt key value functionId diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/get.md b/docs/examples/1.2.x/server-graphql/examples/functions/get.md index fe827f5c7..14c91b4b2 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/get.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/get.md @@ -2,9 +2,9 @@ query { functionsGet( functionId: "[FUNCTION_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt execute name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/update-deployment.md b/docs/examples/1.2.x/server-graphql/examples/functions/update-deployment.md index 9ac8df500..843cf8df5 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/update-deployment.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/update-deployment.md @@ -3,9 +3,9 @@ mutation { functionId: "[FUNCTION_ID]", deploymentId: "[DEPLOYMENT_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt execute name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/update-variable.md b/docs/examples/1.2.x/server-graphql/examples/functions/update-variable.md index 75a7b4ea1..b4aed1401 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/update-variable.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/update-variable.md @@ -4,9 +4,9 @@ mutation { variableId: "[VARIABLE_ID]", key: "[KEY]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt key value functionId diff --git a/docs/examples/1.2.x/server-graphql/examples/functions/update.md b/docs/examples/1.2.x/server-graphql/examples/functions/update.md index 494bf6323..b01c75c01 100644 --- a/docs/examples/1.2.x/server-graphql/examples/functions/update.md +++ b/docs/examples/1.2.x/server-graphql/examples/functions/update.md @@ -4,9 +4,9 @@ mutation { name: "[NAME]", execute: ["any"] ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt execute name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/storage/create-bucket.md b/docs/examples/1.2.x/server-graphql/examples/storage/create-bucket.md index 94d4f9e95..3edf18d12 100644 --- a/docs/examples/1.2.x/server-graphql/examples/storage/create-bucket.md +++ b/docs/examples/1.2.x/server-graphql/examples/storage/create-bucket.md @@ -3,10 +3,10 @@ mutation { bucketId: "[BUCKET_ID]", name: "[NAME]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions fileSecurity name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/storage/get-bucket.md b/docs/examples/1.2.x/server-graphql/examples/storage/get-bucket.md index f3ca53412..02656ece7 100644 --- a/docs/examples/1.2.x/server-graphql/examples/storage/get-bucket.md +++ b/docs/examples/1.2.x/server-graphql/examples/storage/get-bucket.md @@ -2,10 +2,10 @@ query { storageGetBucket( bucketId: "[BUCKET_ID]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions fileSecurity name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/storage/get-file.md b/docs/examples/1.2.x/server-graphql/examples/storage/get-file.md index 9aded69cd..61182e1f0 100644 --- a/docs/examples/1.2.x/server-graphql/examples/storage/get-file.md +++ b/docs/examples/1.2.x/server-graphql/examples/storage/get-file.md @@ -3,11 +3,11 @@ query { bucketId: "[BUCKET_ID]", fileId: "[FILE_ID]" ) { - id + _id bucketId - createdAt - updatedAt - permissions + _createdAt + _updatedAt + _permissions name signature mimeType diff --git a/docs/examples/1.2.x/server-graphql/examples/storage/update-bucket.md b/docs/examples/1.2.x/server-graphql/examples/storage/update-bucket.md index ac72524da..b6372efc0 100644 --- a/docs/examples/1.2.x/server-graphql/examples/storage/update-bucket.md +++ b/docs/examples/1.2.x/server-graphql/examples/storage/update-bucket.md @@ -3,10 +3,10 @@ mutation { bucketId: "[BUCKET_ID]", name: "[NAME]" ) { - id - createdAt - updatedAt - permissions + _id + _createdAt + _updatedAt + _permissions fileSecurity name enabled diff --git a/docs/examples/1.2.x/server-graphql/examples/storage/update-file.md b/docs/examples/1.2.x/server-graphql/examples/storage/update-file.md index b1a88befb..0a4c98d08 100644 --- a/docs/examples/1.2.x/server-graphql/examples/storage/update-file.md +++ b/docs/examples/1.2.x/server-graphql/examples/storage/update-file.md @@ -3,11 +3,11 @@ mutation { bucketId: "[BUCKET_ID]", fileId: "[FILE_ID]" ) { - id + _id bucketId - createdAt - updatedAt - permissions + _createdAt + _updatedAt + _permissions name signature mimeType diff --git a/docs/examples/1.2.x/server-graphql/examples/teams/create-membership.md b/docs/examples/1.2.x/server-graphql/examples/teams/create-membership.md index d8070a8b6..4eb790061 100644 --- a/docs/examples/1.2.x/server-graphql/examples/teams/create-membership.md +++ b/docs/examples/1.2.x/server-graphql/examples/teams/create-membership.md @@ -5,9 +5,9 @@ mutation { roles: [], url: "https://example.com" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt userId userName userEmail diff --git a/docs/examples/1.2.x/server-graphql/examples/teams/create.md b/docs/examples/1.2.x/server-graphql/examples/teams/create.md index f91d2b583..9e363de68 100644 --- a/docs/examples/1.2.x/server-graphql/examples/teams/create.md +++ b/docs/examples/1.2.x/server-graphql/examples/teams/create.md @@ -3,9 +3,9 @@ mutation { teamId: "[TEAM_ID]", name: "[NAME]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name total } diff --git a/docs/examples/1.2.x/server-graphql/examples/teams/get-membership.md b/docs/examples/1.2.x/server-graphql/examples/teams/get-membership.md index 5c07265fe..d28ef798f 100644 --- a/docs/examples/1.2.x/server-graphql/examples/teams/get-membership.md +++ b/docs/examples/1.2.x/server-graphql/examples/teams/get-membership.md @@ -3,9 +3,9 @@ query { teamId: "[TEAM_ID]", membershipId: "[MEMBERSHIP_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt userId userName userEmail diff --git a/docs/examples/1.2.x/server-graphql/examples/teams/get.md b/docs/examples/1.2.x/server-graphql/examples/teams/get.md index 2c3e5d715..3d0a05e3b 100644 --- a/docs/examples/1.2.x/server-graphql/examples/teams/get.md +++ b/docs/examples/1.2.x/server-graphql/examples/teams/get.md @@ -2,9 +2,9 @@ query { teamsGet( teamId: "[TEAM_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name total } diff --git a/docs/examples/1.2.x/server-graphql/examples/teams/update-membership-roles.md b/docs/examples/1.2.x/server-graphql/examples/teams/update-membership-roles.md index 4fa31e5a7..65079e8b8 100644 --- a/docs/examples/1.2.x/server-graphql/examples/teams/update-membership-roles.md +++ b/docs/examples/1.2.x/server-graphql/examples/teams/update-membership-roles.md @@ -4,9 +4,9 @@ mutation { membershipId: "[MEMBERSHIP_ID]", roles: [] ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt userId userName userEmail diff --git a/docs/examples/1.2.x/server-graphql/examples/teams/update-membership-status.md b/docs/examples/1.2.x/server-graphql/examples/teams/update-membership-status.md index 385042a15..ca6cec12e 100644 --- a/docs/examples/1.2.x/server-graphql/examples/teams/update-membership-status.md +++ b/docs/examples/1.2.x/server-graphql/examples/teams/update-membership-status.md @@ -5,9 +5,9 @@ mutation { userId: "[USER_ID]", secret: "[SECRET]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt userId userName userEmail diff --git a/docs/examples/1.2.x/server-graphql/examples/teams/update.md b/docs/examples/1.2.x/server-graphql/examples/teams/update.md index 5cf92d9af..f67b0cd9f 100644 --- a/docs/examples/1.2.x/server-graphql/examples/teams/update.md +++ b/docs/examples/1.2.x/server-graphql/examples/teams/update.md @@ -3,9 +3,9 @@ mutation { teamId: "[TEAM_ID]", name: "[NAME]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name total } diff --git a/docs/examples/1.2.x/server-graphql/examples/users/create-argon2user.md b/docs/examples/1.2.x/server-graphql/examples/users/create-argon2user.md index 3aef1c3c8..784063947 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/create-argon2user.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/create-argon2user.md @@ -4,9 +4,9 @@ mutation { email: "email@example.com", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/create-bcrypt-user.md b/docs/examples/1.2.x/server-graphql/examples/users/create-bcrypt-user.md index 1fa8cd2f6..f4f3b92e9 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/create-bcrypt-user.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/create-bcrypt-user.md @@ -4,9 +4,9 @@ mutation { email: "email@example.com", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/create-m-d5user.md b/docs/examples/1.2.x/server-graphql/examples/users/create-m-d5user.md index 9a9c8db4d..08b1ff87b 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/create-m-d5user.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/create-m-d5user.md @@ -4,9 +4,9 @@ mutation { email: "email@example.com", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/create-p-h-pass-user.md b/docs/examples/1.2.x/server-graphql/examples/users/create-p-h-pass-user.md index b1080a0e8..3c462f615 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/create-p-h-pass-user.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/create-p-h-pass-user.md @@ -4,9 +4,9 @@ mutation { email: "email@example.com", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/create-s-h-a-user.md b/docs/examples/1.2.x/server-graphql/examples/users/create-s-h-a-user.md index cafe5d380..b8d61097d 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/create-s-h-a-user.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/create-s-h-a-user.md @@ -4,9 +4,9 @@ mutation { email: "email@example.com", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/create-scrypt-modified-user.md b/docs/examples/1.2.x/server-graphql/examples/users/create-scrypt-modified-user.md index 790e72831..1ee8766e8 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/create-scrypt-modified-user.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/create-scrypt-modified-user.md @@ -7,9 +7,9 @@ mutation { passwordSaltSeparator: "[PASSWORD_SALT_SEPARATOR]", passwordSignerKey: "[PASSWORD_SIGNER_KEY]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/create-scrypt-user.md b/docs/examples/1.2.x/server-graphql/examples/users/create-scrypt-user.md index 836f398c2..a062496b1 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/create-scrypt-user.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/create-scrypt-user.md @@ -9,9 +9,9 @@ mutation { passwordParallel: 0, passwordLength: 0 ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/create.md b/docs/examples/1.2.x/server-graphql/examples/users/create.md index 9bcf238c9..34acdc91f 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/create.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/create.md @@ -2,9 +2,9 @@ mutation { usersCreate( userId: "[USER_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/get.md b/docs/examples/1.2.x/server-graphql/examples/users/get.md index 584df6ff0..79fcf2f04 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/get.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/get.md @@ -2,9 +2,9 @@ query { usersGet( userId: "[USER_ID]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/update-email-verification.md b/docs/examples/1.2.x/server-graphql/examples/users/update-email-verification.md index 8ec907d26..edc100aff 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/update-email-verification.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/update-email-verification.md @@ -3,9 +3,9 @@ mutation { userId: "[USER_ID]", emailVerification: false ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/update-email.md b/docs/examples/1.2.x/server-graphql/examples/users/update-email.md index 1ee80a215..d916ad58e 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/update-email.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/update-email.md @@ -3,9 +3,9 @@ mutation { userId: "[USER_ID]", email: "email@example.com" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/update-name.md b/docs/examples/1.2.x/server-graphql/examples/users/update-name.md index 324dd846c..86c2b9a96 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/update-name.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/update-name.md @@ -3,9 +3,9 @@ mutation { userId: "[USER_ID]", name: "[NAME]" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/update-password.md b/docs/examples/1.2.x/server-graphql/examples/users/update-password.md index d11bd533f..2ac19e036 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/update-password.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/update-password.md @@ -3,9 +3,9 @@ mutation { userId: "[USER_ID]", password: "password" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/update-phone-verification.md b/docs/examples/1.2.x/server-graphql/examples/users/update-phone-verification.md index 5c3829ca3..5f76baca6 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/update-phone-verification.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/update-phone-verification.md @@ -3,9 +3,9 @@ mutation { userId: "[USER_ID]", phoneVerification: false ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/update-phone.md b/docs/examples/1.2.x/server-graphql/examples/users/update-phone.md index ee04193c6..f80feeed4 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/update-phone.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/update-phone.md @@ -3,9 +3,9 @@ mutation { userId: "[USER_ID]", number: "+12065550100" ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash diff --git a/docs/examples/1.2.x/server-graphql/examples/users/update-status.md b/docs/examples/1.2.x/server-graphql/examples/users/update-status.md index d137cb1eb..deb2d70f0 100644 --- a/docs/examples/1.2.x/server-graphql/examples/users/update-status.md +++ b/docs/examples/1.2.x/server-graphql/examples/users/update-status.md @@ -3,9 +3,9 @@ mutation { userId: "[USER_ID]", status: false ) { - id - createdAt - updatedAt + _id + _createdAt + _updatedAt name password hash