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 36b4d11636..369c487278 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 ae860f4526..a19d331a02 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 ce52daea41..18418aecb9 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 f9d6f8a846..9897de7651 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 2d2048178b..200e1c6d3a 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 822fd51c4f..865add6cc5 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 b74173b56b..22490be6b0 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 0843625bef..0aec84c0e3 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 fb40b234c7..2bf4e28c77 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 e6c9d51d55..b452d7181d 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 d5f7e83486..5df6d5a74a 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 d678ae99c0..17c128b93e 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 c6c251616c..0d9a7f8074 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 ff75e80d44..c4e1590558 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 553671980c..a24a6094b4 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 94a5c7504b..103c2faf18 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 c9ed8e4988..2af4068cc4 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 a4f09dafb2..21ab90c801 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 464bdc26bc..a0c985d7db 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 1384041f3e..0358f49588 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 eee8544c17..364f7215c3 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 479dc6d907..47abb20d34 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 2f4ba08930..6ef546c0de 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 3f38cecc21..94b30290a2 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 a70620ebf9..0476c4ce40 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 090fd779b6..300ce56a13 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 128617029d..895d1b146b 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 9aded69cdf..61182e1f02 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 b1a88befba..0a4c98d087 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 d8070a8b6c..4eb7900611 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 f91d2b583b..9e363de68e 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 5c07265fef..d28ef798fa 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 2c3e5d715f..3d0a05e3b6 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 4fa31e5a75..65079e8b84 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 385042a153..ca6cec12e1 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 5cf92d9afd..f67b0cd9f3 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 2d2048178b..200e1c6d3a 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 822fd51c4f..865add6cc5 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 b74173b56b..22490be6b0 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 fb40b234c7..2bf4e28c77 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 e6c9d51d55..b452d7181d 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 d5f7e83486..5df6d5a74a 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 c6c251616c..0d9a7f8074 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 ff75e80d44..c4e1590558 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 94a5c7504b..103c2faf18 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 c9ed8e4988..2af4068cc4 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 a4f09dafb2..21ab90c801 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 464bdc26bc..a0c985d7db 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 1384041f3e..0358f49588 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 eee8544c17..364f7215c3 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 479dc6d907..47abb20d34 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 dabbbed11e..7c9c2efae1 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 2f4ba08930..6ef546c0de 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 5011b0e3ab..c1fc18c87e 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 d6c55a2802..842627824e 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 3f38cecc21..94b30290a2 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 bc0ff2068d..1d03c6b917 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 4e6b1eb36e..3eff5c8717 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 a70620ebf9..0476c4ce40 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 afeadd2aa1..07d1492512 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 090fd779b6..300ce56a13 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 e396fc48d3..176edb2e78 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 f5cf62cbcf..a2e29654c6 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 6591b4af79..e2e4609ca0 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 128617029d..895d1b146b 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 d029388a47..09a7fa8c24 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 fe827f5c70..14c91b4b28 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 9ac8df5003..843cf8df53 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 75a7b4ea10..b4aed1401a 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 494bf63239..b01c75c018 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 94d4f9e953..3edf18d127 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 f3ca53412e..02656ece76 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 9aded69cdf..61182e1f02 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 ac72524dae..b6372efc0f 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 b1a88befba..0a4c98d087 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 d8070a8b6c..4eb7900611 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 f91d2b583b..9e363de68e 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 5c07265fef..d28ef798fa 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 2c3e5d715f..3d0a05e3b6 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 4fa31e5a75..65079e8b84 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 385042a153..ca6cec12e1 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 5cf92d9afd..f67b0cd9f3 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 3aef1c3c86..784063947c 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 1fa8cd2f62..f4f3b92e92 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 9a9c8db4df..08b1ff87b4 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 b1080a0e8b..3c462f6156 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 cafe5d3806..b8d61097da 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 790e728317..1ee8766e80 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 836f398c2b..a062496b13 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 9bcf238c90..34acdc91fc 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 584df6ff0b..79fcf2f048 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 8ec907d269..edc100afff 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 1ee80a2153..d916ad58eb 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 324dd846c5..86c2b9a969 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 d11bd533f6..2ac19e0360 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 5c3829ca30..5f76baca6e 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 ee04193c6f..f80feeed46 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 d137cb1eba..deb2d70f03 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